X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/05eead638cfd02a6d5a218939e226eb1700fd8a5..HEAD:/examples/platforms/CMakeLists.txt diff --git a/examples/platforms/CMakeLists.txt b/examples/platforms/CMakeLists.txt index 70bb080001..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 routing_cluster) +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()