From: Martin Quinson Date: Thu, 27 Dec 2018 20:26:22 +0000 (+0100) Subject: compile simgrid_python with c++14 X-Git-Tag: v3_22~744 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/186bfd0f73865a6da285f990935fb258af80abd1?ds=sidebyside compile simgrid_python with c++14 - Was with gnu++14, but icc does not seem to love it. - Also remove -Wno-attributes now that the problematic templates are gone --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 28657b2385..c03d4e1528 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -858,8 +858,7 @@ option(enable_python "Whether the Python bindings are activated." ${pybind11_FOU 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()