X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fa15ed6668695b02e85ec71de10240199df84cc4..b519c710a179e22b19c6d21721c6c0dfd13e65ce:/examples/platforms/CMakeLists.txt diff --git a/examples/platforms/CMakeLists.txt b/examples/platforms/CMakeLists.txt index ab567db16d..187377329b 100644 --- a/examples/platforms/CMakeLists.txt +++ b/examples/platforms/CMakeLists.txt @@ -1,7 +1,10 @@ add_custom_target(platf_cpp COMMENT "C++ platform description") add_dependencies(tests platf_cpp) -foreach (platf small_platform) +foreach (platf griffon routing_cluster supernode) add_library (${platf} SHARED ${platf}.cpp) target_link_libraries(${platf} simgrid) add_dependencies(platf_cpp ${platf}) + set_target_properties(${platf} + PROPERTIES SUFFIX .so + ) endforeach()