X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/743d783b7f96055b312f7d9daf4ccb48efc4c2f7..54ce1078962f1acdd7af97bc1c27d13d1c6396cc:/buildtools/Cmake/simgrid_CMakeList/examples/gras/synchro/CMakeLists.txt diff --git a/buildtools/Cmake/simgrid_CMakeList/examples/gras/synchro/CMakeLists.txt b/buildtools/Cmake/simgrid_CMakeList/examples/gras/synchro/CMakeLists.txt new file mode 100644 index 0000000000..50a16a1523 --- /dev/null +++ b/buildtools/Cmake/simgrid_CMakeList/examples/gras/synchro/CMakeLists.txt @@ -0,0 +1,14 @@ +cmake_minimum_required(VERSION 2.6) + +set_source_files_properties(_synchro_simulator.c _synchro_philosopher.c +PROPERTIES GENERATED true) + +set(EXECUTABLE_OUTPUT_PATH "./") +set(LIBRARY_OUTPUT_PATH "${PROJECT_DIRECTORY}/lib") + +add_executable(synchro_simulator _synchro_simulator.c philosopher.c) +add_executable(synchro_philosopher _synchro_philosopher.c philosopher.c) + +### Add definitions for compile +target_link_libraries(synchro_simulator simgrid pthread m -fprofile-arcs) +target_link_libraries(synchro_philosopher gras pthread m -fprofile-arcs)