Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
868bd24eb78079dbcedd4eab6a694a8e5b33c473
[simgrid.git] / examples / msg / mc / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.6)
2
3 set(EXECUTABLE_OUTPUT_PATH "${PROJECT_DIRECTORY}/examples/msg/mc/")
4
5 add_executable(centralized centralized_mutex.c)
6 add_executable(bugged1     bugged1.c)
7 add_executable(bugged2     bugged2.c)
8 add_executable(bugged3     bugged3.c)
9 add_executable(random_test random_test.c)
10
11 target_link_libraries(centralized simgrid m -fprofile-arcs)
12 target_link_libraries(bugged1     simgrid m -fprofile-arcs)
13 target_link_libraries(bugged2     simgrid m -fprofile-arcs)
14 target_link_libraries(bugged3     simgrid m -fprofile-arcs)
15 target_link_libraries(random_test     simgrid m -fprofile-arcs)