Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
convert msg/energy-consumption to c/energy-exec
[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 
4         async-waitall async-waitany 
5         energy-exec
6         io-disk-raw)
7   add_executable       (${x}-c EXCLUDE_FROM_ALL ${x}/${x}.c)
8   target_link_libraries(${x}-c simgrid)
9   set_target_properties(${x}-c PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${x})
10   add_dependencies(tests ${x}-c)
11
12   set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.tesh)
13   set(teshsuite_src ${teshsuite_src} ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.c)
14 endforeach()
15
16 set(teshsuite_src ${teshsuite_src}  PARENT_SCOPE)
17 set(tesh_files    ${tesh_files}     PARENT_SCOPE)
18
19 set(xml_files     ${xml_files} ${CMAKE_CURRENT_SOURCE_DIR}/actor-create/actor-create_d.xml
20                                ${CMAKE_CURRENT_SOURCE_DIR}/actor-yield/actor-yield_d.xml
21                                ${CMAKE_CURRENT_SOURCE_DIR}/app-pingpong/app-pingpong_d.xml
22                                ${CMAKE_CURRENT_SOURCE_DIR}/async-waitall/async-waitall_d.xml
23                                ${CMAKE_CURRENT_SOURCE_DIR}/async-waitany/async-waitany_d.xml
24                                PARENT_SCOPE)
25
26 foreach(x
27         actor-create actor-daemon actor-exiting actor-join actor-kill actor-migrate actor-suspend actor-yield
28         app-pingpong app-token-ring
29         async-waitall async-waitany
30         energy-exec
31         io-disk-raw)
32   ADD_TESH(c-${x} --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms
33                   --setenv bindir=${CMAKE_BINARY_DIR}/examples/c/${x}
34                   --cd ${CMAKE_HOME_DIRECTORY}/examples/c/${x}
35                   ${CMAKE_HOME_DIRECTORY}/examples/c/${x}/${x}.tesh)
36 endforeach()