Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add actor-exiting in C
[simgrid.git] / examples / c / CMakeLists.txt
1 foreach(x
2         actor-create actor-daemon actor-exiting actor-join actor-kill actor-migrate actor-suspend actor-yield
3         app-pingpong app-token-ring async-waitany io-disk-raw)
4   add_executable       (${x}-c EXCLUDE_FROM_ALL ${x}/${x}.c)
5   target_link_libraries(${x}-c simgrid)
6   set_target_properties(${x}-c PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${x})
7   add_dependencies(tests ${x}-c)
8
9   set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.tesh)
10   set(teshsuite_src ${teshsuite_src} ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.c)
11 endforeach()
12
13 set(teshsuite_src ${teshsuite_src}  PARENT_SCOPE)
14 set(tesh_files    ${tesh_files}     PARENT_SCOPE)
15
16 set(xml_files     ${xml_files} ${CMAKE_CURRENT_SOURCE_DIR}/actor-create/actor-create_d.xml
17                                ${CMAKE_CURRENT_SOURCE_DIR}/actor-yield/actor-yield_d.xml
18                                ${CMAKE_CURRENT_SOURCE_DIR}/app-pingpong/app-pingpong_d.xml
19                                ${CMAKE_CURRENT_SOURCE_DIR}/async-waitany/async-waitany_d.xml
20                                PARENT_SCOPE)
21
22 foreach(x
23         actor-create actor-daemon actor-exiting actor-join actor-kill actor-migrate actor-suspend actor-yield
24         app-pingpong app-token-ring async-waitany io-disk-raw)
25   ADD_TESH(c-${x} --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms
26                   --setenv bindir=${CMAKE_BINARY_DIR}/examples/c/${x}
27                   --cd ${CMAKE_HOME_DIRECTORY}/examples/c/${x}
28                   ${CMAKE_HOME_DIRECTORY}/examples/c/${x}/${x}.tesh)
29 endforeach()