X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0ce58986d4fed13a128a5e251c23d339a0d2642a..9b23aedfbbfcbe7dfcc01daec713ebc103a44afd:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 02a0859d10..c03d4e1528 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -849,14 +849,16 @@ endif() # Python binding, generated with pybind11 set(PYBIND11_CPP_STANDARD -std=c++11) -find_package(pybind11) +find_package(pybind11 2.2.0) +if(NOT PYTHONLIBS_FOUND) + set(pybind11_FOUND OFF) +endif() option(enable_python "Whether the Python bindings are activated." ${pybind11_FOUND}) # ON by default if dependencies are met if(enable_python) if(pybind11_FOUND) pybind11_add_module(simgrid_python src/bindings/python/simgrid_python.cpp) - set_source_files_properties(src/bindings/python/simgrid_python.cpp PROPERTIES COMPILE_FLAGS -Wno-attributes) - set_source_files_properties(src/bindings/python/simgrid_python.cpp PROPERTIES COMPILE_FLAGS -std=gnu++14) + set_source_files_properties(src/bindings/python/simgrid_python.cpp PROPERTIES COMPILE_FLAGS -std=c++14) target_link_libraries(simgrid_python PUBLIC simgrid) set_target_properties(simgrid_python PROPERTIES LIBRARY_OUTPUT_NAME simgrid) else()