Logo AND Algorithmique Numérique Distribuée

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