Logo AND Algorithmique Numérique Distribuée

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