Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
86c42b7c8b593bbdc19e8f069eaf3b749f71ca5a
[simgrid.git] / examples / gras / timer / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.6)
2
3 set_source_files_properties(
4   ${CMAKE_CURRENT_BINARY_DIR}/_timer_simulator.c
5   ${CMAKE_CURRENT_BINARY_DIR}/_timer_client.c
6   PROPERTIES GENERATED true)
7
8 set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}")
9 add_executable(timer_simulator ${CMAKE_CURRENT_BINARY_DIR}/_timer_simulator.c ${CMAKE_CURRENT_SOURCE_DIR}/timer.c)
10 add_executable(timer_client    ${CMAKE_CURRENT_BINARY_DIR}/_timer_client.c ${CMAKE_CURRENT_SOURCE_DIR}/timer.c)
11
12 add_custom_command(
13   OUTPUT
14   ${CMAKE_CURRENT_BINARY_DIR}/_timer_simulator.c
15   ${CMAKE_CURRENT_BINARY_DIR}/_timer_client.c
16   DEPENDS gras_stub_generator ${CMAKE_CURRENT_SOURCE_DIR}/timer.xml
17   COMMAND ${CMAKE_BINARY_DIR}/bin/gras_stub_generator timer ${CMAKE_CURRENT_SOURCE_DIR}/timer.xml
18   WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
19   )
20
21 ### Add definitions for compile
22 if(NOT WIN32)
23   target_link_libraries(timer_simulator simgrid pthread m )
24   target_link_libraries(timer_client gras pthread m )
25 else(NOT WIN32)
26   target_link_libraries(timer_simulator simgrid)
27   target_link_libraries(timer_client gras)
28 endif(NOT WIN32)
29
30 set(tesh_files
31   ${tesh_files}
32   ${CMAKE_CURRENT_SOURCE_DIR}/test_rl.tesh
33   ${CMAKE_CURRENT_SOURCE_DIR}/test_sg_32.tesh
34   ${CMAKE_CURRENT_SOURCE_DIR}/test_sg_64.tesh
35   PARENT_SCOPE
36   )
37 set(xml_files
38   ${xml_files}
39   ${CMAKE_CURRENT_SOURCE_DIR}/timer.xml
40   PARENT_SCOPE
41   )
42 set(examples_src
43   ${examples_src}
44   ${CMAKE_CURRENT_SOURCE_DIR}/timer.c
45   PARENT_SCOPE
46   )
47 set(bin_files
48   ${bin_files}
49   PARENT_SCOPE
50   )