Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[examples] add s4u-barrier
[simgrid.git] / examples / s4u / CMakeLists.txt
1 # THIS IS ONLY FOR THE FILES. To add your test (tesh) as well, make sure you add
2 # the same at the bottom of the file as well.
3 foreach (example actor-create actor-daemon actor-join actor-kill
4                  actor-lifetime actor-migration actor-suspend actor-yield
5                  app-chainsend app-pingpong app-token-ring
6                  async-ready async-wait async-waitany async-waitall async-waituntil
7                  barrier
8                  cloud-capping cloud-migration cloud-simple
9                  energy-exec energy-boot energy-link energy-vm
10                  engine-filtering
11                  exec-async exec-basic exec-dvfs exec-monitor exec-ptask exec-remote
12                  io-async io-file-system io-file-remote io-storage-raw
13                  mutex
14                  platform-failures platform-properties plugin-hostload 
15                  replay-comm replay-storage
16                  routing-get-clusters
17                  trace-platform)
18   add_executable       (s4u-${example}  ${example}/s4u-${example}.cpp)
19   target_link_libraries(s4u-${example}  simgrid)
20   set_target_properties(s4u-${example}  PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${example})
21
22   set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/${example}/s4u-${example}.tesh)
23   set(examples_src  ${examples_src}  ${CMAKE_CURRENT_SOURCE_DIR}/${example}/s4u-${example}.cpp)
24 endforeach()
25
26 # MASTERWORKERS EXAMPLE
27 foreach(variant fun class) 
28   add_executable       (s4u-app-masterworkers-${variant}  app-masterworkers/s4u-app-masterworkers-${variant}.cpp)
29   target_link_libraries(s4u-app-masterworkers-${variant}  simgrid)
30   set_target_properties(s4u-app-masterworkers-${variant}  PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/app-masterworkers)
31
32   set(examples_src  ${examples_src}  ${CMAKE_CURRENT_SOURCE_DIR}/app-masterworkers/s4u-app-masterworkers-${variant}.cpp)
33 endforeach()
34 set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/app-masterworkers/s4u-app-masterworkers.tesh)
35
36 # CHORD EXAMPLE
37 add_executable       (s4u-dht-chord dht-chord/s4u-dht-chord.cpp dht-chord/s4u-dht-chord-node.cpp)
38 target_link_libraries(s4u-dht-chord simgrid)
39 set_target_properties(s4u-dht-chord PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/dht-chord)
40 foreach (file s4u-dht-chord s4u-dht-chord-node)
41   set(examples_src  ${examples_src}  ${CMAKE_CURRENT_SOURCE_DIR}/dht-chord/${file}.cpp)
42 endforeach()
43 set(examples_src  ${examples_src}  ${CMAKE_CURRENT_SOURCE_DIR}/dht-chord/s4u-dht-chord.hpp)
44
45 # KADEMLIA EXAMPLE
46 add_executable       (s4u-dht-kademlia dht-kademlia/s4u-dht-kademlia.cpp dht-kademlia/node.cpp 
47                       dht-kademlia/routing_table.cpp dht-kademlia/answer.cpp)
48 target_link_libraries(s4u-dht-kademlia simgrid)
49 set_target_properties(s4u-dht-kademlia PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/dht-kademlia)
50 foreach (file answer routing_table node s4u-dht-kademlia)
51   set(examples_src  ${examples_src}  ${CMAKE_CURRENT_SOURCE_DIR}/dht-kademlia/${file}.cpp 
52                                      ${CMAKE_CURRENT_SOURCE_DIR}/dht-kademlia/${file}.hpp)
53 endforeach()
54 set(examples_src  ${examples_src}  ${CMAKE_CURRENT_SOURCE_DIR}/dht-kademlia/message.hpp)
55
56 # BITTORRENT EXAMPLE
57 add_executable       (s4u-bittorrent app-bittorrent/s4u-bittorrent.cpp app-bittorrent/s4u-peer.cpp
58                       app-bittorrent/s4u-tracker.cpp)
59 target_link_libraries(s4u-bittorrent simgrid)
60 set_target_properties(s4u-bittorrent PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/app-bittorrent)
61 foreach (file s4u-bittorrent s4u-peer s4u-tracker)
62   set(examples_src  ${examples_src}  ${CMAKE_CURRENT_SOURCE_DIR}/app-bittorrent/${file}.cpp
63                                      ${CMAKE_CURRENT_SOURCE_DIR}/app-bittorrent/${file}.hpp)
64 endforeach()
65
66 set(examples_src  ${examples_src}                                                                          PARENT_SCOPE)
67 set(tesh_files    ${tesh_files}   ${CMAKE_CURRENT_SOURCE_DIR}/app-bittorrent/s4u-app-bittorrent.tesh
68                                   ${CMAKE_CURRENT_SOURCE_DIR}/app-pingpong/simix-breakpoint.tesh
69                                   ${CMAKE_CURRENT_SOURCE_DIR}/dht-chord/s4u-dht-chord.tesh
70                                   ${CMAKE_CURRENT_SOURCE_DIR}/dht-kademlia/s4u-dht-kademlia.tesh
71                   PARENT_SCOPE)
72 set(xml_files     ${xml_files}    ${CMAKE_CURRENT_SOURCE_DIR}/actor-create/s4u-actor-create_d.xml
73                                   ${CMAKE_CURRENT_SOURCE_DIR}/actor-lifetime/s4u-actor-lifetime_d.xml
74                                   ${CMAKE_CURRENT_SOURCE_DIR}/actor-yield/s4u-actor-yield_d.xml
75                                   ${CMAKE_CURRENT_SOURCE_DIR}/app-bittorrent/s4u-app-bittorrent_d.xml
76                                   ${CMAKE_CURRENT_SOURCE_DIR}/app-masterworkers/s4u-app-masterworkers_d.xml
77                                   ${CMAKE_CURRENT_SOURCE_DIR}/async-wait/s4u-async-wait_d.xml
78                                   ${CMAKE_CURRENT_SOURCE_DIR}/async-waitany/s4u-async-waitany_d.xml
79                                   ${CMAKE_CURRENT_SOURCE_DIR}/async-waitall/s4u-async-waitall_d.xml
80                                   ${CMAKE_CURRENT_SOURCE_DIR}/async-wait/s4u-async-wait_d.xml
81                                   ${CMAKE_CURRENT_SOURCE_DIR}/async-ready/s4u-async-ready_d.xml
82                                   ${CMAKE_CURRENT_SOURCE_DIR}/async-waituntil/s4u-async-waituntil_d.xml
83                                   ${CMAKE_CURRENT_SOURCE_DIR}/dht-chord/s4u-dht-chord_d.xml
84                                   ${CMAKE_CURRENT_SOURCE_DIR}/dht-kademlia/s4u-dht-kademlia_d.xml
85                                   ${CMAKE_CURRENT_SOURCE_DIR}/energy-boot/platform_boot.xml
86                                   ${CMAKE_CURRENT_SOURCE_DIR}/io-file-remote/s4u-io-file-remote_d.xml
87                                   ${CMAKE_CURRENT_SOURCE_DIR}/platform-properties/s4u-platform-properties_d.xml
88                                   ${CMAKE_CURRENT_SOURCE_DIR}/platform-failures/s4u-masterworker-failures_d.xml
89                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-comm/s4u-replay-comm-split_d.xml
90                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-comm/s4u-replay-comm_d.xml
91                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-storage/s4u-replay-storage_d.xml
92                   PARENT_SCOPE)
93 set(bin_files     ${bin_files}    ${CMAKE_CURRENT_SOURCE_DIR}/dht-kademlia/generate.py                     PARENT_SCOPE)
94 set(txt_files     ${txt_files}    ${CMAKE_CURRENT_SOURCE_DIR}/replay-comm/s4u-replay-comm-split-p0.txt
95                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-comm/s4u-replay-comm-split-p1.txt
96                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-comm/s4u-replay-comm.txt
97                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-storage/s4u-replay-storage.txt
98                                   ${CMAKE_CURRENT_SOURCE_DIR}/README.rst                                   PARENT_SCOPE)
99
100 foreach(example actor-create actor-daemon actor-join actor-kill
101                 actor-lifetime actor-migration actor-suspend actor-yield
102                 app-bittorrent app-chainsend app-masterworkers app-pingpong app-token-ring 
103                 async-ready async-wait async-waitall async-waitany async-waituntil
104                 barrier
105                 cloud-capping cloud-migration cloud-simple
106                 dht-chord dht-kademlia
107                 energy-exec energy-boot energy-link energy-vm
108                 engine-filtering
109                 exec-async exec-basic exec-dvfs exec-monitor exec-ptask exec-remote
110                 platform-properties plugin-hostload mutex # FIXME: platform-failures is disabled
111                 io-async io-file-system io-file-remote io-storage-raw
112                 replay-comm replay-storage
113                 routing-get-clusters
114                 )
115   ADD_TESH_FACTORIES(s4u-${example} "thread;ucontext;raw;boost" 
116                                     --setenv bindir=${CMAKE_CURRENT_BINARY_DIR}/${example} 
117                                     --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms 
118                                     --cd ${CMAKE_CURRENT_SOURCE_DIR}/${example} 
119                                     ${CMAKE_HOME_DIRECTORY}/examples/s4u/${example}/s4u-${example}.tesh)
120 endforeach()
121
122 foreach (example trace-platform)
123   ADD_TESH(s4u-${example} --setenv bindir=${CMAKE_CURRENT_BINARY_DIR}/${example}
124                           --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms 
125                           ${CMAKE_HOME_DIRECTORY}/examples/s4u/${example}/s4u-${example}.tesh)
126 endforeach()
127
128 if (NOT enable_memcheck AND NOT WIN32)
129   ADD_TESH(simix-breakpoint --setenv bindir=${CMAKE_CURRENT_BINARY_DIR}/app-pingpong
130                             --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms
131                             ${CMAKE_CURRENT_SOURCE_DIR}/app-pingpong/simix-breakpoint.tesh)
132 endif()