From 89443fc81cc2c677259ca977b0ee8ffd25174243 Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Wed, 4 Mar 2020 00:29:20 +0100 Subject: [PATCH] avoid cmake warning --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8d45268ef6..acb0f7d8b7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -854,7 +854,8 @@ if(enable_python) target_link_libraries(python-bindings PUBLIC simgrid) set_target_properties(python-bindings PROPERTIES LIBRARY_OUTPUT_NAME simgrid - CXX_VISIBILITY_PRESET "default") + CXX_VISIBILITY_PRESET "default" + INTERPROCEDURAL_OPTIMIZATION FALSE) add_dependencies(tests python-bindings) set_property(TARGET python-bindings APPEND PROPERTY INCLUDE_DIRECTORIES "${INTERNAL_INCLUDES}") -- 2.20.1