X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/68c4f3d5e544c5fe8e2a67a5607d7a268a0e59a1..fa15ed6668695b02e85ec71de10240199df84cc4:/examples/platforms/CMakeLists.txt diff --git a/examples/platforms/CMakeLists.txt b/examples/platforms/CMakeLists.txt new file mode 100644 index 0000000000..ab567db16d --- /dev/null +++ b/examples/platforms/CMakeLists.txt @@ -0,0 +1,7 @@ +add_custom_target(platf_cpp COMMENT "C++ platform description") +add_dependencies(tests platf_cpp) +foreach (platf small_platform) + add_library (${platf} SHARED ${platf}.cpp) + target_link_libraries(${platf} simgrid) + add_dependencies(platf_cpp ${platf}) +endforeach()