Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
merge conflicts
[simgrid.git] / examples / msg / mc / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.6)
2
3 set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}")
4
5 add_executable(centralized centralized_mutex.c)
6 add_executable(bugged1     bugged1.c)
7 add_executable(bugged1_stateful bugged1_stateful.c)
8 add_executable(bugged2_stateful bugged2_stateful.c)
9 add_executable(bugged2     bugged2.c)
10 add_executable(bugged3     bugged3.c)
11 add_executable(random_test random_test.c)
12 add_executable(example_liveness_with_cycle2 automaton.c
13 automatonparse_promela.c example_liveness_with_cycle2.c)
14 add_executable(example_liveness_with_cycle automaton.c
15 automatonparse_promela.c example_liveness_with_cycle.c)
16
17
18
19
20 target_link_libraries(centralized simgrid m )
21 target_link_libraries(bugged1     simgrid m )
22 target_link_libraries(bugged1_stateful simgrid m)
23 target_link_libraries(bugged2_stateful simgrid m)
24 target_link_libraries(bugged2     simgrid m )
25 target_link_libraries(bugged3     simgrid m )
26 target_link_libraries(random_test     simgrid m )
27 target_link_libraries(example_liveness_with_cycle2     simgrid m )
28 target_link_libraries(example_liveness_with_cycle     simgrid m )