Skip to content

Commit

Permalink
pybind11 requires C++14
Browse files Browse the repository at this point in the history
  • Loading branch information
zishun committed Mar 16, 2022
1 parent f7d0238 commit 1d85869
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cmake_minimum_required(VERSION 3.4...3.18)
project (MeshUtilityCPP CXX)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_CXX_STANDARD_REQUIRED True)
set(CMAKE_CXX_STANDARD 14)
#set(CMAKE_CXX_EXTENSIONS OFF)

add_subdirectory("./ext/pybind11")

Expand Down

0 comments on commit 1d85869

Please sign in to comment.