Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / examples / platforms / CMakeLists.txt
1 add_custom_target(platf_cpp COMMENT "C++ platform description")
2 add_dependencies(tests platf_cpp)
3 foreach (platf griffon routing_cluster supernode)
4   add_library       (${platf} SHARED ${platf}.cpp)
5   target_link_libraries(${platf} simgrid)
6   add_dependencies(platf_cpp ${platf})
7   set_target_properties(${platf}
8       PROPERTIES SUFFIX .so
9   )
10 endforeach()