Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
make sure that we won't survive a parser error in the deployment file
[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(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 )
12 target_link_libraries(bugged1     simgrid m )
13 target_link_libraries(bugged2     simgrid m )
14 target_link_libraries(bugged3     simgrid m )
15 target_link_libraries(random_test     simgrid m )