Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
513493db6980b0bc93a60542f9af7c9afe495669
[simgrid.git] / teshsuite / msg / CMakeLists.txt
1 # C examples
2 foreach(x actions-comm actions-storage
3           async-wait async-waitall async-waitany
4           cloud-sharing get_sender host_on_off host_on_off_recv host_on_off_processes     
5           process-daemon process-kill process-lifetime process-migration process-suspend process-yield
6           energy-ptask energy-pstate platform-properties
7           io-file io-raw-storage io-file-remote
8           trace_integration)
9   add_executable       (${x}  ${x}/${x}.c)
10   target_link_libraries(${x}  simgrid)
11   set_target_properties(${x}  PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${x})
12
13   set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.tesh)
14   set(teshsuite_src ${teshsuite_src} ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.c)
15 endforeach()
16
17 # CPP examples
18 foreach(x task_destroy_cancel task_listen_from task_progress)
19   add_executable       (${x}  ${x}/${x}.cpp)
20   target_link_libraries(${x}  simgrid)
21   set_target_properties(${x}  PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${x})
22
23   set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.tesh)
24   set(teshsuite_src ${teshsuite_src} ${CMAKE_CURRENT_SOURCE_DIR}/${x}/${x}.cpp)
25 endforeach()
26
27 add_executable       (bittorrent app-bittorrent/bittorrent.c app-bittorrent/messages.c app-bittorrent/peer.c app-bittorrent/tracker.c app-bittorrent/connection.c)
28 target_link_libraries(bittorrent simgrid)
29 set_target_properties(bittorrent PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/app-bittorrent)
30 foreach (file bittorrent connection messages peer tracker)
31   set(teshsuite_src  ${teshsuite_src}  ${CMAKE_CURRENT_SOURCE_DIR}/app-bittorrent/${file}.c  ${CMAKE_CURRENT_SOURCE_DIR}/app-bittorrent/${file}.h)
32 endforeach()
33
34
35 set(teshsuite_src ${teshsuite_src}  PARENT_SCOPE)
36 set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/app-bittorrent/app-bittorrent.tesh          PARENT_SCOPE)
37 set(bin_files    ${bin_files}      ${CMAKE_CURRENT_SOURCE_DIR}/app-bittorrent/generate.py                  PARENT_SCOPE)
38 set(txt_files     ${txt_files}     ${CMAKE_CURRENT_SOURCE_DIR}/actions-comm/actions-comm.txt
39                                    ${CMAKE_CURRENT_SOURCE_DIR}/actions-comm/actions-comm_split_p0.txt
40                                    ${CMAKE_CURRENT_SOURCE_DIR}/actions-comm/actions-comm_split_p1.txt
41                                    ${CMAKE_CURRENT_SOURCE_DIR}/actions-storage/actions-storage.txt         PARENT_SCOPE)
42 set(xml_files     ${xml_files}     ${CMAKE_CURRENT_SOURCE_DIR}/actions-comm/actions-comm_d.xml
43                                    ${CMAKE_CURRENT_SOURCE_DIR}/actions-comm/actions-comm_split_d.xml
44                                    ${CMAKE_CURRENT_SOURCE_DIR}/actions-storage/actions-storage_d.xml
45                                    ${CMAKE_CURRENT_SOURCE_DIR}/app-bittorrent/app-bittorrent_d.xml
46                                    ${CMAKE_CURRENT_SOURCE_DIR}/async-wait/async-wait_d.xml
47                                    ${CMAKE_CURRENT_SOURCE_DIR}/async-wait/async-wait2_d.xml
48                                    ${CMAKE_CURRENT_SOURCE_DIR}/async-wait/async-wait3_d.xml
49                                    ${CMAKE_CURRENT_SOURCE_DIR}/async-wait/async-wait4_d.xml
50                                    ${CMAKE_CURRENT_SOURCE_DIR}/async-waitall/async-waitall_d.xml
51                                    ${CMAKE_CURRENT_SOURCE_DIR}/async-waitany/async-waitany_d.xml
52                                    ${CMAKE_CURRENT_SOURCE_DIR}/io-file-remote/io-file-remote_d.xml
53                                    ${CMAKE_CURRENT_SOURCE_DIR}/platform-properties/platform-properties_d.xml
54                                    ${CMAKE_CURRENT_SOURCE_DIR}/process-lifetime/baseline_d.xml
55                                    ${CMAKE_CURRENT_SOURCE_DIR}/process-lifetime/kill_d.xml
56                                    ${CMAKE_CURRENT_SOURCE_DIR}/process-lifetime/start_d.xml
57                                    ${CMAKE_CURRENT_SOURCE_DIR}/process-lifetime/start_kill_d.xml
58                                    ${CMAKE_CURRENT_SOURCE_DIR}/process-yield/process-yield_d.xml
59                                    ${CMAKE_CURRENT_SOURCE_DIR}/trace_integration/test-hbp1.0-hbp1.0-hbp1.0.xml
60                                    ${CMAKE_CURRENT_SOURCE_DIR}/trace_integration/test-hbp1.0-hbp3.0-hbp4.0.xml
61                                    ${CMAKE_CURRENT_SOURCE_DIR}/trace_integration/test-hbp1.5-hbp1.5.xml
62                                    ${CMAKE_CURRENT_SOURCE_DIR}/trace_integration/test-hbp1-c0s0-c0s1.xml
63                                    ${CMAKE_CURRENT_SOURCE_DIR}/trace_integration/test-hbp1-c0s0-c1s0.xml
64                                    ${CMAKE_CURRENT_SOURCE_DIR}/trace_integration/test-hbp1-c0s1-c0s2.xml
65                                    ${CMAKE_CURRENT_SOURCE_DIR}/trace_integration/test-hbp1-c0s1-c2s2.xml
66                                    ${CMAKE_CURRENT_SOURCE_DIR}/trace_integration/test-hbp1-c0s2-c1s0.xml
67                                    ${CMAKE_CURRENT_SOURCE_DIR}/trace_integration/test-hbp1-c0s2-c1s1.xml
68                                    ${CMAKE_CURRENT_SOURCE_DIR}/trace_integration/test-hbp1-c1s1-c1s2.xml
69                                    ${CMAKE_CURRENT_SOURCE_DIR}/trace_integration/test-hbp1-c1s1-c3s2.xml
70                                    ${CMAKE_CURRENT_SOURCE_DIR}/trace_integration/test-hbp2.5-hbp1.5.xml    PARENT_SCOPE)
71
72 foreach(x 
73     actions-comm actions-storage
74     async-wait async-waitall async-waitany
75     app-bittorrent
76     energy-pstate
77     host_on_off host_on_off_processes host_on_off_recv
78     get_sender
79     task_destroy_cancel task_listen_from task_progress 
80     process-daemon process-kill process-lifetime process-migration process-suspend process-yield
81     energy-ptask
82     io-file io-raw-storage io-file-remote
83     platform-properties
84     trace_integration)
85   ADD_TESH_FACTORIES(tesh-msg-${x} "thread;ucontext;raw;boost" 
86                                    --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms
87                                    --setenv bindir=${CMAKE_BINARY_DIR}/teshsuite/msg/${x}
88                                    --cd ${CMAKE_HOME_DIRECTORY}/teshsuite/msg/${x} 
89                                    ${CMAKE_HOME_DIRECTORY}/teshsuite/msg/${x}/${x}.tesh)
90 endforeach()
91
92 foreach(x cloud-sharing)
93   ADD_TESH(tesh-msg-${x} --setenv srcdir=${CMAKE_HOME_DIRECTORY}/teshsuite/msg/${x} --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms --cd ${CMAKE_BINARY_DIR}/teshsuite/msg/${x} ${CMAKE_HOME_DIRECTORY}/teshsuite/msg/${x}/${x}.tesh)
94 endforeach()
95
96 ADD_TESH_FACTORIES(tesh-app-bittorrent-parallel         "thread;ucontext;raw;boost" --cfg contexts/nthreads:4 ${CONTEXTS_SYNCHRO} --setenv bindir=${CMAKE_BINARY_DIR}/teshsuite/msg/app-bittorrent --setenv srcdir=${CMAKE_HOME_DIRECTORY}/examples/platforms --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms --cd ${CMAKE_HOME_DIRECTORY}/teshsuite/msg/app-bittorrent app-bittorrent.tesh)