Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
do not use f2c with 64 bits platforms which use old gcc (<4.5)
[simgrid.git] / teshsuite / msg / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.6)
2
3 set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}")
4
5 add_executable(get_sender ${CMAKE_HOME_DIRECTORY}/teshsuite/msg/get_sender.c)
6
7 ### Add definitions for compile
8 if(NOT WIN32)
9   target_link_libraries(get_sender simgrid m pthread )
10 else()
11   target_link_libraries(get_sender simgrid)
12 endif()
13
14 set(tesh_files
15   ${tesh_files}
16   ${CMAKE_CURRENT_SOURCE_DIR}/get_sender.tesh
17   PARENT_SCOPE
18   )
19 set(xml_files
20   ${xml_files}
21   ${CMAKE_CURRENT_SOURCE_DIR}/get_sender.xml
22   ${CMAKE_CURRENT_SOURCE_DIR}/get_sender_d.xml
23   ${CMAKE_CURRENT_SOURCE_DIR}/get_sender_p.xml
24   PARENT_SCOPE
25   )
26 set(teshsuite_src
27   ${teshsuite_src}
28   ${CMAKE_CURRENT_SOURCE_DIR}/get_sender.c
29   PARENT_SCOPE
30   )
31 set(bin_files
32   ${bin_files}
33   PARENT_SCOPE
34   )
35 set(txt_files
36   ${txt_files}
37   PARENT_SCOPE
38   )