Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix make distcheck
[simgrid.git] / examples / cpp / CMakeLists.txt
1 # Regular examples: with only one source and tested with all factories by default
2 #################################################################################
3 ### Define the examples' specificities
4
5 set(_app-bittorrent_sources app-bittorrent/s4u-bittorrent.cpp app-bittorrent/s4u-bittorrent.hpp
6                             app-bittorrent/s4u-peer.cpp app-bittorrent/s4u-peer.hpp
7                             app-bittorrent/s4u-tracker.cpp app-bittorrent/s4u-tracker.hpp)
8 set(_dht-chord_sources    dht-chord/s4u-dht-chord.cpp dht-chord/s4u-dht-chord.hpp dht-chord/s4u-dht-chord-node.cpp)
9 set(_dht-kademlia_sources dht-kademlia/s4u-dht-kademlia.cpp dht-kademlia/s4u-dht-kademlia.hpp
10                           dht-kademlia/node.cpp dht-kademlia/node.hpp
11                           dht-kademlia/routing_table.cpp dht-kademlia/routing_table.hpp
12                           dht-kademlia/answer.cpp dht-kademlia/answer.hpp dht-kademlia/message.hpp)
13
14 set(_actor-stacksize_factories "^thread") # Threads ignore modifications of the stack size
15
16 # The maestro-set example only works for threads
17 set(_maestro-set_factories "thread")
18
19 if(SIMGRID_HAVE_MC)
20   # These tests timeout with threads, not sure why
21   foreach(example mc-bugged1 mc-bugged2 mc-failing-assert mc-electric-fence)
22     set(_${example}_factories "^thread") # Timeout
23     add_dependencies(tests-mc s4u-${example})
24   endforeach()
25
26   if(enable_coverage)
27     foreach (example mc-bugged1 mc-bugged2 mc-electric-fence mc-failing-assert)
28       ADD_TEST(cover-${example} ${CMAKE_CURRENT_BINARY_DIR}/${example}/s4u-${example} ${CMAKE_HOME_DIRECTORY}/examples/platforms/model_checker_platform.xml)
29     endforeach()
30   endif()
31 else()
32   foreach (example mc-bugged1 mc-bugged2  mc-centralized-mutex mc-failing-assert mc-electric-fence)
33     set(_${example}_disable 1)
34   endforeach()
35 endif()
36
37 set(tesh_files ${tesh_files} ${CMAKE_CURRENT_SOURCE_DIR}/synchro-mutex/s4u-mc-synchro-mutex-stateful.tesh)
38 if(SIMGRID_HAVE_STATEFUL_MC)
39   if(HAVE_C_STACK_CLEANER)
40     add_executable       (s4u-mc-bugged1-liveness-cleaner-on  EXCLUDE_FROM_ALL s4u-mc-bugged1-liveness/s4u-mc-bugged1-liveness.cpp)
41     target_link_libraries(s4u-mc-bugged1-liveness-cleaner-on  simgrid)
42     set_target_properties(s4u-mc-bugged1-liveness-cleaner-on  PROPERTIES COMPILE_FLAGS "-DGARBAGE_STACK -fstack-cleaner")
43     add_dependencies(tests-mc s4u-mc-bugged1-liveness-cleaner-on)
44
45     add_executable       (s4u-mc-bugged1-liveness-cleaner-off EXCLUDE_FROM_ALL s4u-mc-bugged1-liveness/s4u-mc-bugged1-liveness.cpp)
46     target_link_libraries(s4u-mc-bugged1-liveness-cleaner-off simgrid)
47     set_target_properties(s4u-mc-bugged1-liveness-cleaner-off PROPERTIES COMPILE_FLAGS "-DGARBAGE_STACK -fno-stack-cleaner")
48     add_dependencies(tests-mc s4u-mc-bugged1-liveness-cleaner-off)
49   endif()
50
51   ADD_TESH(s4u-mc-synchro-mutex-stateful
52      --setenv bindir=${CMAKE_CURRENT_BINARY_DIR}/synchro-mutex
53      --setenv libdir=${CMAKE_BINARY_DIR}/lib
54      --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms
55      --setenv srcdir=${CMAKE_CURRENT_SOURCE_DIR}/synchro-mutex
56      --cd ${CMAKE_CURRENT_SOURCE_DIR}/synchro-mutex
57       ${CMAKE_HOME_DIRECTORY}/examples/cpp/synchro-mutex/s4u-mc-synchro-mutex-stateful.tesh)
58
59   # Model-checking liveness
60   if(HAVE_UCONTEXT_CONTEXTS AND SIMGRID_PROCESSOR_x86_64)
61     # liveness model-checking works only on 64bits (for now ...)
62     set(_mc-bugged1-liveness_factories "ucontext")
63     add_dependencies(tests-mc s4u-mc-bugged1-liveness)
64     set(_mc-bugged2-liveness_factories "ucontext")
65
66     # This example never ends, disable it for now
67     set(_mc-bugged2-liveness_disable 1)
68
69     ADD_TESH(s4u-mc-bugged1-liveness-visited-ucontext --setenv bindir=${CMAKE_CURRENT_BINARY_DIR}/mc-bugged1-liveness
70                                                       --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms
71                                                       --cd ${CMAKE_CURRENT_SOURCE_DIR}/mc-bugged1-liveness
72                                                        ${CMAKE_HOME_DIRECTORY}/examples/cpp/mc-bugged1-liveness/s4u-mc-bugged1-liveness-visited.tesh)
73     IF(HAVE_C_STACK_CLEANER)
74       add_dependencies(tests-mc s4u-mc-bugged1-liveness-stack-cleaner)
75       # This test checks if the stack cleaner is making a difference:
76       ADD_TEST(s4u-mc-bugged1-liveness-stack-cleaner ${CMAKE_HOME_DIRECTORY}/examples/cpp/mc-bugged1-liveness/s4u-mc-bugged1-liveness-stack-cleaner
77                                                      ${CMAKE_HOME_DIRECTORY}/examples/cpp/mc-bugged1-liveness/
78                                                      ${CMAKE_CURRENT_BINARY_DIR}/mc-bugged1-liveness/)
79     ENDIF()
80   else()
81     set(_mc-bugged1-liveness_disable 1)
82     set(_mc-bugged2-liveness_disable 1)
83   endif()
84
85   if(enable_coverage)
86     ADD_TEST(cover-mc-bugged1-liveness ${CMAKE_CURRENT_BINARY_DIR}/mc-bugged1-liveness/s4u-mc-bugged1-liveness ${CMAKE_HOME_DIRECTORY}/examples/platforms/small_platform.xml 1 1001)
87   endif()
88
89 else()
90   foreach (example mc-bugged1-liveness mc-bugged2-liveness)
91     set(_${example}_disable 1)
92   endforeach()
93 endif()
94
95 # Hijack some regular tests to run them on top of the MC
96 foreach (example synchro-barrier synchro-mutex synchro-semaphore)
97   set(tesh_files ${tesh_files} ${CMAKE_CURRENT_SOURCE_DIR}/${example}/s4u-mc-${example}.tesh)
98
99   if (SIMGRID_HAVE_MC)
100     ADD_TESH(s4u-mc-${example}
101               --setenv bindir=${CMAKE_CURRENT_BINARY_DIR}/${example}
102               --setenv libdir=${CMAKE_BINARY_DIR}/lib
103               --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms
104               --setenv srcdir=${CMAKE_CURRENT_SOURCE_DIR}/${example}
105               --cd ${CMAKE_CURRENT_SOURCE_DIR}/${example}
106               ${CMAKE_HOME_DIRECTORY}/examples/cpp/${example}/s4u-mc-${example}.tesh)
107
108     add_dependencies(tests-mc s4u-${example})
109   endif()
110 endforeach()
111
112 if (SIMGRID_HAVE_MC)
113   # Dependency on the regular tests
114   foreach(example mc-centralized-mutex)
115     add_dependencies(tests-mc s4u-${example})
116   endforeach()
117 endif()
118
119 if(NOT HAVE_GRAPHVIZ)
120   set(_dag-from-dot_disable 1)
121   set(_dag-from-dot-simple_disable 1)
122 endif()
123
124 if (NOT SIMGRID_HAVE_JSON)
125   set(_dag-from-json-simple_disable 1)
126 endif()
127
128 if(SIMGRID_HAVE_NS3)
129   if(NS3_VERSION VERSION_GREATER_EQUAL 3.37)
130     set(_network-ns3_teshfile         ${CMAKE_HOME_DIRECTORY}/examples/cpp/network-ns3/s4u-network-ns3-timed.tesh)
131     set(tesh_files    ${tesh_files}   ${CMAKE_HOME_DIRECTORY}/examples/cpp/network-ns3/s4u-network-ns3-notime.tesh)
132   else()
133     set(_network-ns3_teshfile         ${CMAKE_HOME_DIRECTORY}/examples/cpp/network-ns3/s4u-network-ns3-notime.tesh)
134     set(tesh_files    ${tesh_files}   ${CMAKE_HOME_DIRECTORY}/examples/cpp/network-ns3/s4u-network-ns3-timed.tesh)
135   endif()
136
137 foreach (example network-ns3 network-ns3-wifi)
138   add_dependencies(tests-ns3 s4u-${example})
139 endforeach()
140
141 else()
142   # Even if ns3 is not found, we need to override the teshfile name and make sure that everything gets included in the archive
143   set(_network-ns3_teshfile         ${CMAKE_HOME_DIRECTORY}/examples/cpp/network-ns3/s4u-network-ns3-notime.tesh)
144   set(tesh_files    ${tesh_files}   ${CMAKE_HOME_DIRECTORY}/examples/cpp/network-ns3/s4u-network-ns3-timed.tesh)
145
146   foreach (example network-ns3 network-ns3-wifi)
147     set(_${example}_disable 1)
148   endforeach()
149 endif()
150
151 # Deal with each example
152
153 foreach (example activity-testany activity-waitany
154                  actor-create actor-daemon actor-exiting actor-join actor-kill
155                  actor-lifetime actor-migrate actor-suspend actor-yield actor-stacksize
156                  app-bittorrent app-chainsend app-token-ring
157                  battery-degradation battery-simple battery-energy
158                  comm-pingpong comm-ready comm-suspend comm-testany comm-wait comm-waitany comm-waitall comm-waituntil
159                  comm-dependent comm-host2host comm-failure comm-throttling
160                  cloud-capping cloud-migration cloud-simple
161                  dag-comm dag-from-json-simple dag-from-dax-simple dag-from-dax dag-from-dot-simple dag-from-dot dag-failure dag-io dag-scheduling dag-simple dag-tuto
162                  dht-chord dht-kademlia
163                  energy-exec energy-boot energy-link energy-vm energy-exec-ptask energy-wifi
164                  engine-filtering engine-run-partial
165                  exec-async exec-basic exec-dvfs exec-remote exec-waitany exec-waitfor exec-dependent exec-unassigned
166                  exec-ptask-multicore exec-ptask-multicore-latency exec-cpu-nonlinear exec-cpu-factors exec-failure exec-threads
167                  maestro-set
168                  mc-bugged1 mc-bugged1-liveness mc-bugged2 mc-bugged2-liveness mc-centralized-mutex mc-electric-fence mc-failing-assert
169                  network-ns3 network-ns3-wifi network-wifi
170                  io-async io-priority io-degradation io-file-system io-file-remote io-disk-raw io-dependent
171                  operation-simple operation-variable-load operation-switch-host
172                  platform-comm-serialize platform-failures platform-profile platform-properties
173                  plugin-host-load plugin-link-load plugin-prodcons
174                  replay-comm replay-io
175                  routing-get-clusters
176                  synchro-barrier synchro-condition-variable synchro-condition-variable-waituntil synchro-mutex synchro-semaphore
177                  clusters-multicpu network-factors network-nonlinear)
178
179   # Use default source file unless specified otherwise
180   if(NOT DEFINED _${example}_sources)
181     set(_${example}_sources ${example}/s4u-${example}.cpp)
182   endif()
183
184   # Use default tesh file unless specified otherwise
185   if(NOT DEFINED _${example}_teshfile)
186     set(_${example}_teshfile ${CMAKE_HOME_DIRECTORY}/examples/cpp/${example}/s4u-${example}.tesh)
187   endif()
188
189   if(NOT DEFINED _${example}_disable)
190     add_executable       (s4u-${example} EXCLUDE_FROM_ALL ${_${example}_sources})
191     add_dependencies     (tests s4u-${example})
192     add_dependencies     (s4u-${example} platf_cpp)
193     target_link_libraries(s4u-${example} simgrid)
194     set_target_properties(s4u-${example} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${example})
195
196     # Use default factories unless specified otherwise
197     if(NOT DEFINED _${example}_factories)
198       set(_${example}_factories "*")
199     endif()
200 #    message("Factories of ${example}: ${_${example}_factories}")
201
202     ADD_TESH_FACTORIES(s4u-${example} "${_${example}_factories}"
203                                       --setenv bindir=${CMAKE_CURRENT_BINARY_DIR}/${example}
204                                       --setenv libdir=${CMAKE_BINARY_DIR}/lib
205                                       --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms
206                                       --setenv srcdir=${CMAKE_CURRENT_SOURCE_DIR}/${example}
207                                       --cd ${CMAKE_CURRENT_SOURCE_DIR}/${example}
208                                       ${_${example}_teshfile})
209   else()
210     message(STATUS "Example ${example} disabled, thus not compiled.")
211     unset(_${example}_disable)
212   endif()
213
214   set(tesh_files    ${tesh_files}    ${_${example}_teshfile})
215   foreach(file ${_${example}_sources})
216     set(examples_src  ${examples_src} ${CMAKE_CURRENT_SOURCE_DIR}/${file})
217   endforeach()
218
219   unset(_${example}_factories)
220   unset(_${example}_sources)
221   unset(_${example}_teshfile)
222 endforeach()
223
224
225 # Specific examples
226 ###################
227
228 # MASTERWORKERS EXAMPLE
229 foreach(variant fun class)
230   add_executable       (s4u-app-masterworkers-${variant} EXCLUDE_FROM_ALL app-masterworkers/s4u-app-masterworkers-${variant}.cpp)
231   target_link_libraries(s4u-app-masterworkers-${variant} simgrid)
232   set_target_properties(s4u-app-masterworkers-${variant} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/app-masterworkers)
233   add_dependencies(tests s4u-app-masterworkers-${variant})
234
235   set(examples_src  ${examples_src}  ${CMAKE_CURRENT_SOURCE_DIR}/app-masterworkers/s4u-app-masterworkers-${variant}.cpp)
236 endforeach()
237 set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/app-masterworkers/s4u-app-masterworkers.tesh)
238
239 # The tests the parallel variant of of DHTs
240
241 if(CMAKE_SYSTEM_NAME STREQUAL "SunOS" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "i386" AND CMAKE_SIZEOF_VOID_P EQUAL 8)
242   # Thread-local storage (TLS) is needed for parallel execution, but it doesn't
243   # play well with Ucontexts on 64bit SunOS (at least on x86_64).
244   set(parallel-factories "^ucontext")
245 else()
246   set(parallel-factories "*")
247 endif()
248
249 foreach(example app-bittorrent app-masterworkers
250                 dht-chord dht-kademlia
251                 )
252   ADD_TESH_FACTORIES(s4u-${example}-parallel "${parallel-factories}" --cfg contexts/nthreads:4 ${CONTEXTS_SYNCHRO}
253                                              --setenv bindir=${CMAKE_CURRENT_BINARY_DIR}/${example}
254                                              --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms
255                                              --cd ${CMAKE_CURRENT_SOURCE_DIR}/${example}
256                                              ${CMAKE_HOME_DIRECTORY}/examples/cpp/${example}/s4u-${example}.tesh)
257 endforeach()
258
259 # Test non-DPOR reductions on a given MC test
260 foreach(example mc-failing-assert)
261 # State equality is not tested because it would take about 15 hours to run that test on my machine.
262 # We should first optimize mmalloc_heap_differ() which takes ~4sec for each pair to compare (maybe {175 x 174/ 2} pairs here)
263 # See the comment on mmalloc_heap_differ() in compare.cpp for more info on why it's hard to optimize.
264 #
265 #  if(SIMGRID_HAVE_STATEFUL_MC)
266 #    ADD_TESH(s4u-${example}-statequality  --setenv bindir=${CMAKE_CURRENT_BINARY_DIR}/${example}
267 #                                      --setenv libdir=${CMAKE_BINARY_DIR}/lib
268 #                                      --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms
269 #                                      --setenv srcdir=${CMAKE_CURRENT_SOURCE_DIR}/${example}
270 #                                      --cd ${CMAKE_CURRENT_SOURCE_DIR}/${example}
271 #                                      ${CMAKE_HOME_DIRECTORY}/examples/cpp/${example}/s4u-${example}-statequality.tesh)
272 #  endif()
273
274   if(SIMGRID_HAVE_MC)
275     ADD_TESH(s4u-${example}-nodpor    --setenv bindir=${CMAKE_CURRENT_BINARY_DIR}/${example}
276                                       --setenv libdir=${CMAKE_BINARY_DIR}/lib
277                                       --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms
278                                       --setenv srcdir=${CMAKE_CURRENT_SOURCE_DIR}/${example}
279                                       --cd ${CMAKE_CURRENT_SOURCE_DIR}/${example}
280                                       ${CMAKE_HOME_DIRECTORY}/examples/cpp/${example}/s4u-${example}-nodpor.tesh)
281   endif()                                    
282   set(tesh_files    ${tesh_files}   ${CMAKE_HOME_DIRECTORY}/examples/cpp/${example}/s4u-${example}-statequality.tesh)
283   set(tesh_files    ${tesh_files}   ${CMAKE_HOME_DIRECTORY}/examples/cpp/${example}/s4u-${example}-nodpor.tesh)
284 endforeach()
285
286 # Examples not accepting factories
287 ##################################
288
289 foreach (example exec-ptask trace-categories trace-masterworkers trace-platform trace-process-migration
290                  trace-host-user-variables trace-link-user-variables trace-route-user-variables)
291   add_executable       (s4u-${example} EXCLUDE_FROM_ALL ${example}/s4u-${example}.cpp)
292   target_link_libraries(s4u-${example} simgrid)
293   set_target_properties(s4u-${example} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${example})
294   add_dependencies(tests s4u-${example})
295
296   set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/${example}/s4u-${example}.tesh)
297   set(examples_src  ${examples_src}  ${CMAKE_CURRENT_SOURCE_DIR}/${example}/s4u-${example}.cpp)
298
299   ADD_TESH(s4u-${example} --setenv bindir=${CMAKE_CURRENT_BINARY_DIR}/${example}
300                           --setenv srcdir=${CMAKE_CURRENT_SOURCE_DIR}/${example}
301                           --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms
302                           --cd ${CMAKE_CURRENT_BINARY_DIR}/${example}
303                           ${CMAKE_HOME_DIRECTORY}/examples/cpp/${example}/s4u-${example}.tesh)
304 endforeach()
305
306 if (NOT enable_memcheck)
307   ADD_TESH(debug-breakpoint --setenv bindir=${CMAKE_CURRENT_BINARY_DIR}/comm-pingpong
308                             --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms
309                             ${CMAKE_CURRENT_SOURCE_DIR}/comm-pingpong/debug-breakpoint.tesh)
310 endif()
311
312 # Add all extra files to the archive
313 ####################################
314 set(examples_src  ${examples_src} ${CMAKE_CURRENT_SOURCE_DIR}/mc-bugged1-liveness/s4u-mc-bugged1-liveness.cpp        PARENT_SCOPE)
315 set(tesh_files    ${tesh_files}   ${CMAKE_CURRENT_SOURCE_DIR}/comm-pingpong/debug-breakpoint.tesh
316                                   ${CMAKE_CURRENT_SOURCE_DIR}/mc-bugged1-liveness/s4u-mc-bugged1-liveness.tesh
317                                   ${CMAKE_CURRENT_SOURCE_DIR}/mc-bugged1-liveness/s4u-mc-bugged1-liveness-visited.tesh  PARENT_SCOPE)
318 set(xml_files     ${xml_files}    ${CMAKE_CURRENT_SOURCE_DIR}/actor-create/s4u-actor-create_d.xml
319                                   ${CMAKE_CURRENT_SOURCE_DIR}/actor-lifetime/s4u-actor-lifetime_d.xml
320                                   ${CMAKE_CURRENT_SOURCE_DIR}/app-bittorrent/s4u-app-bittorrent_d.xml
321                                   ${CMAKE_CURRENT_SOURCE_DIR}/app-masterworkers/s4u-app-masterworkers_d.xml
322                                   ${CMAKE_CURRENT_SOURCE_DIR}/dag-scheduling/Montage_25.xml
323                                   ${CMAKE_CURRENT_SOURCE_DIR}/dht-chord/s4u-dht-chord_d.xml
324                                   ${CMAKE_CURRENT_SOURCE_DIR}/dht-kademlia/s4u-dht-kademlia_d.xml
325                                   ${CMAKE_CURRENT_SOURCE_DIR}/io-file-remote/s4u-io-file-remote_d.xml
326                                   ${CMAKE_CURRENT_SOURCE_DIR}/platform-failures/s4u-platform-failures_d.xml
327                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-comm/s4u-replay-comm-split_d.xml
328                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-comm/s4u-replay-comm_d.xml
329                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-io/s4u-replay-io_d.xml
330                                   ${CMAKE_CURRENT_SOURCE_DIR}/network-ns3/3hosts_2links_d.xml
331                                   ${CMAKE_CURRENT_SOURCE_DIR}/network-ns3/3links-timer_d.xml
332                                   ${CMAKE_CURRENT_SOURCE_DIR}/network-ns3/3links_d.xml
333                                   ${CMAKE_CURRENT_SOURCE_DIR}/network-ns3/crosstraffic_d.xml
334                                   ${CMAKE_CURRENT_SOURCE_DIR}/network-ns3/dogbone_d.xml
335                                   ${CMAKE_CURRENT_SOURCE_DIR}/network-ns3/onelink_d.xml
336                                   ${CMAKE_CURRENT_SOURCE_DIR}/network-ns3/one_cluster_d.xml                PARENT_SCOPE)
337 set(bin_files     ${bin_files}    ${CMAKE_CURRENT_SOURCE_DIR}/battery-degradation/plot_battery_degradation.py
338                                   ${CMAKE_CURRENT_SOURCE_DIR}/dht-kademlia/generate.py
339                                   ${CMAKE_CURRENT_SOURCE_DIR}/mc-bugged1-liveness/s4u-mc-bugged1-liveness-stack-cleaner
340                                   ${CMAKE_CURRENT_SOURCE_DIR}/mc-bugged1-liveness/promela_bugged1_liveness
341                                   ${CMAKE_CURRENT_SOURCE_DIR}/mc-bugged2-liveness/promela_bugged2_liveness PARENT_SCOPE)
342 set(txt_files     ${txt_files}    ${CMAKE_CURRENT_SOURCE_DIR}/dag-from-dax/simple_dax_with_cycle.xml
343                                   ${CMAKE_CURRENT_SOURCE_DIR}/dag-from-dax/smalldax.xml
344                                   ${CMAKE_CURRENT_SOURCE_DIR}/dag-from-dax-simple/dag.xml
345                                   ${CMAKE_CURRENT_SOURCE_DIR}/dag-from-dot/dag.dot
346                                   ${CMAKE_CURRENT_SOURCE_DIR}/dag-from-dot-simple/dag.dot
347                                   ${CMAKE_CURRENT_SOURCE_DIR}/dag-from-dot/dag_with_cycle.dot
348                                   ${CMAKE_CURRENT_SOURCE_DIR}/dag-from-json-simple/dag.json
349                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-comm/s4u-replay-comm-split-p0.txt
350                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-comm/s4u-replay-comm-split-p1.txt
351                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-comm/s4u-replay-comm.txt
352                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-io/s4u-replay-io.txt                  PARENT_SCOPE)