Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Enable simple sthread example.
[simgrid.git] / examples / sthread / CMakeLists.txt
1 set(THREADS_PREFER_PTHREAD_FLAG ON)
2 find_package(Threads REQUIRED)
3
4 # Regular pthread examples: test the interceptor of the pthread interface
5 #########################################################################
6
7 foreach(x
8         mutex-simple)
9
10   if("${CMAKE_SYSTEM}" MATCHES "Linux")
11     add_executable       (pthread-${x} EXCLUDE_FROM_ALL pthread-${x}.c)
12     set_target_properties(pthread-${x} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
13     target_link_libraries(pthread-${x} PRIVATE Threads::Threads)
14     target_link_libraries(pthread-${x} PUBLIC "-Wl,-znorelro -Wl,-znoseparate-code") # TODO: convert to target_link_option once cmake is >3.13
15
16     add_dependencies(tests pthread-${x})
17     ADD_TESH_FACTORIES(pthread-${x} "^thread" --setenv libdir=${CMAKE_BINARY_DIR}/lib --cd ${CMAKE_BINARY_DIR}/examples/sthread ${CMAKE_CURRENT_SOURCE_DIR}/pthread-${x}.tesh)
18   endif()
19
20   set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/pthread-${x}.tesh)
21   set(examples_src  ${examples_src}  ${CMAKE_CURRENT_SOURCE_DIR}/pthread-${x}.c)
22
23 endforeach()
24
25 # Regular sthread examples: test the internal interface for debugging purpose
26 #############################################################################
27
28 foreach(x
29         mutex-simple)
30   if("${CMAKE_SYSTEM}" MATCHES "Linux")
31     add_executable       (sthread-${x} EXCLUDE_FROM_ALL sthread-${x}.c)
32     set_target_properties(sthread-${x} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
33     target_link_libraries(sthread-${x} sthread)
34     set_property(TARGET sthread-${x} APPEND PROPERTY INCLUDE_DIRECTORIES "${INTERNAL_INCLUDES}")
35
36     add_dependencies(tests sthread-${x})
37     ADD_TESH_FACTORIES(sthread-${x} "^thread" --cd ${CMAKE_BINARY_DIR}/examples/sthread ${CMAKE_CURRENT_SOURCE_DIR}/sthread-${x}.tesh)
38   endif()
39
40   set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/sthread-${x}.tesh)
41   set(examples_src  ${examples_src}  ${CMAKE_CURRENT_SOURCE_DIR}/sthread-${x}.c)
42 endforeach()
43
44
45 # Add all extra files to the archive
46 ####################################
47
48 set(tesh_files    ${tesh_files}     PARENT_SCOPE)
49 set(bin_files     ${bin_files}      PARENT_SCOPE)
50 set(examples_src  ${examples_src}   PARENT_SCOPE)
51 set(xml_files     ${xml_files}      PARENT_SCOPE)
52
53