Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Disable lazy relocation in the model-ched process.
[simgrid.git] / teshsuite / msg / pid / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.6)
2
3 set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}")
4
5 add_executable(pid pid.c)
6
7 ### Add definitions for compile
8 if(NOT WIN32)
9   target_link_libraries(pid simgrid m pthread)
10 else()
11   target_link_libraries(pid simgrid)
12 endif()
13
14 set(tesh_files
15   ${tesh_files}
16   ${CMAKE_CURRENT_SOURCE_DIR}/pid.tesh
17   PARENT_SCOPE
18   )
19 set(xml_files
20   ${xml_files}
21   ${CMAKE_CURRENT_SOURCE_DIR}/pid_d.xml
22   PARENT_SCOPE
23   )
24 set(teshsuite_src
25   ${teshsuite_src}
26   ${CMAKE_CURRENT_SOURCE_DIR}/pid.c
27   PARENT_SCOPE
28   )
29 set(bin_files
30   ${bin_files}
31   PARENT_SCOPE
32   )
33 set(txt_files
34   ${txt_files}
35   PARENT_SCOPE
36   )