Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / examples / msg / semaphores / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.6)
2
3 set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}")
4
5 add_executable(synchro synchro.c)
6
7 ### Add definitions for compile
8 target_link_libraries(synchro simgrid)
9
10 set(tesh_files
11   ${tesh_files}
12   PARENT_SCOPE
13   )
14 set(xml_files
15   ${xml_files}
16   PARENT_SCOPE
17   )
18 set(examples_src
19   ${examples_src}
20   ${CMAKE_CURRENT_SOURCE_DIR}/synchro.c
21   PARENT_SCOPE
22   )
23 set(bin_files
24   ${bin_files}
25   PARENT_SCOPE
26   )
27 set(txt_files
28   ${txt_files}
29   PARENT_SCOPE
30   )