Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Chord: update some messages displayed
[simgrid.git] / examples / msg / token_ring / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.6)
2
3 set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}")
4
5 add_executable(token_ring ring_call.c)
6
7 ### Add definitions for compile
8 if(NOT WIN32)
9 target_link_libraries(token_ring simgrid m pthread )
10 else(NOT WIN32)
11 target_link_libraries(token_ring simgrid)
12 endif(NOT WIN32)
13