Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics: rename a function, deprecate old name
[simgrid.git] / examples / s4u / CMakeLists.txt
1 foreach (example actor-create actor-daemon actor-join actor-kill actor-kill-pid
2                  actor-lifetime actor-migration actor-suspend actor-yield
3                  app-chainsend app-masterworker app-pingpong app-token-ring
4                  async-wait async-waitany async-waitall
5                  cloud-capping cloud-migration cloud-simple
6                  energy-exec energy-boot energy-link energy-vm
7                  exec-async exec-basic exec-dvfs exec-monitor exec-ptask exec-remote
8                  io-file-system io-file-remote io-storage-raw
9                  mutex
10                  platform-properties plugin-hostload 
11                  replay-comm replay-storage
12                  routing-get-clusters
13                  trace-platform)
14   add_executable       (s4u-${example}  ${example}/s4u-${example}.cpp)
15   target_link_libraries(s4u-${example}  simgrid)
16   set_target_properties(s4u-${example}  PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${example})
17
18   set(tesh_files    ${tesh_files}    ${CMAKE_CURRENT_SOURCE_DIR}/${example}/s4u-${example}.tesh)
19   set(examples_src  ${examples_src}  ${CMAKE_CURRENT_SOURCE_DIR}/${example}/s4u-${example}.cpp)
20 endforeach()
21
22 # CHORD EXAMPLE
23 add_executable       (s4u-dht-chord dht-chord/s4u-dht-chord.cpp dht-chord/s4u-dht-chord-node.cpp)
24 target_link_libraries(s4u-dht-chord simgrid)
25 set_target_properties(s4u-dht-chord PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/dht-chord)
26 foreach (file s4u-dht-chord s4u-dht-chord-node)
27   set(examples_src  ${examples_src}  ${CMAKE_CURRENT_SOURCE_DIR}/dht-chord/${file}.cpp)
28 endforeach()
29 set(examples_src  ${examples_src}  ${CMAKE_CURRENT_SOURCE_DIR}/dht-chord/s4u-dht-chord.hpp)
30
31 # KADEMLIA EXAMPLE
32 add_executable       (s4u-dht-kademlia dht-kademlia/s4u-dht-kademlia.cpp dht-kademlia/node.cpp 
33                       dht-kademlia/routing_table.cpp dht-kademlia/answer.cpp)
34 target_link_libraries(s4u-dht-kademlia simgrid)
35 set_target_properties(s4u-dht-kademlia PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/dht-kademlia)
36 foreach (file answer routing_table node s4u-dht-kademlia)
37   set(examples_src  ${examples_src}  ${CMAKE_CURRENT_SOURCE_DIR}/dht-kademlia/${file}.cpp 
38                                      ${CMAKE_CURRENT_SOURCE_DIR}/dht-kademlia/${file}.hpp)
39 endforeach()
40 set(examples_src  ${examples_src}  ${CMAKE_CURRENT_SOURCE_DIR}/dht-kademlia/message.hpp)
41
42 # BITTORRENT EXAMPLE
43 add_executable       (s4u-bittorrent app-bittorrent/s4u-bittorrent.cpp app-bittorrent/s4u-peer.cpp
44                       app-bittorrent/s4u-tracker.cpp)
45 target_link_libraries(s4u-bittorrent simgrid)
46 set_target_properties(s4u-bittorrent PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/app-bittorrent)
47 foreach (file s4u-bittorrent s4u-peer s4u-tracker)
48   set(examples_src  ${examples_src}  ${CMAKE_CURRENT_SOURCE_DIR}/app-bittorrent/${file}.cpp
49                                      ${CMAKE_CURRENT_SOURCE_DIR}/app-bittorrent/${file}.hpp)
50 endforeach()
51
52 set(examples_src  ${examples_src}                                                                          PARENT_SCOPE)
53 set(tesh_files    ${tesh_files}   ${CMAKE_CURRENT_SOURCE_DIR}/app-bittorrent/s4u-app-bittorrent.tesh
54                                   ${CMAKE_CURRENT_SOURCE_DIR}/dht-chord/s4u-dht-chord.tesh
55                                   ${CMAKE_CURRENT_SOURCE_DIR}/dht-kademlia/s4u-dht-kademlia.tesh
56                                   ${CMAKE_CURRENT_SOURCE_DIR}/actor-lifetime/s4u-actor-lifetime.tesh
57                                   ${CMAKE_CURRENT_SOURCE_DIR}/actor-yield/s4u-actor-yield.tesh
58                                   ${CMAKE_CURRENT_SOURCE_DIR}/async-wait/s4u-async-wait.tesh
59                                   ${CMAKE_CURRENT_SOURCE_DIR}/async-waitany/s4u-async-waitany.tesh
60                                   ${CMAKE_CURRENT_SOURCE_DIR}/async-waitall/s4u-async-waitall.tesh
61                                   ${CMAKE_CURRENT_SOURCE_DIR}/exec-basic/s4u-exec-basic.tesh
62                                   ${CMAKE_CURRENT_SOURCE_DIR}/exec-dvfs/s4u-exec-dvfs.tesh
63                   PARENT_SCOPE)
64 set(xml_files     ${xml_files}    ${CMAKE_CURRENT_SOURCE_DIR}/actor-create/s4u-actor-create_d.xml
65                                   ${CMAKE_CURRENT_SOURCE_DIR}/actor-lifetime/s4u-actor-lifetime_d.xml
66                                   ${CMAKE_CURRENT_SOURCE_DIR}/actor-yield/s4u-actor-yield_d.xml
67                                   ${CMAKE_CURRENT_SOURCE_DIR}/app-bittorrent/s4u-app-bittorrent_d.xml
68                                   ${CMAKE_CURRENT_SOURCE_DIR}/app-masterworker/s4u-app-masterworker_d.xml
69                                   ${CMAKE_CURRENT_SOURCE_DIR}/async-waitany/s4u-async-waitany_d.xml
70                                   ${CMAKE_CURRENT_SOURCE_DIR}/async-waitall/s4u-async-waitall_d.xml
71                                   ${CMAKE_CURRENT_SOURCE_DIR}/async-wait/s4u-async-wait_d.xml
72                                   ${CMAKE_CURRENT_SOURCE_DIR}/dht-chord/s4u-dht-chord_d.xml
73                                   ${CMAKE_CURRENT_SOURCE_DIR}/dht-kademlia/s4u-dht-kademlia_d.xml
74                                   ${CMAKE_CURRENT_SOURCE_DIR}/energy-boot/platform_boot.xml
75                                   ${CMAKE_CURRENT_SOURCE_DIR}/io-file-remote/s4u-io-file-remote_d.xml
76                                   ${CMAKE_CURRENT_SOURCE_DIR}/platform-properties/s4u-platform-properties_d.xml
77                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-comm/s4u-replay-comm-split_d.xml
78                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-comm/s4u-replay-comm_d.xml
79                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-storage/s4u-replay-storage_d.xml
80                   PARENT_SCOPE)
81 set(bin_files     ${bin_files}    ${CMAKE_CURRENT_SOURCE_DIR}/dht-kademlia/generate.py                     PARENT_SCOPE)
82 set(txt_files     ${txt_files}    ${CMAKE_CURRENT_SOURCE_DIR}/replay-comm/s4u-replay-comm-split-p0.txt
83                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-comm/s4u-replay-comm-split-p1.txt
84                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-comm/s4u-replay-comm.txt
85                                   ${CMAKE_CURRENT_SOURCE_DIR}/replay-storage/s4u-replay-storage.txt
86                                   ${CMAKE_CURRENT_SOURCE_DIR}/README.doc                                   PARENT_SCOPE)
87
88 foreach(example actor-create actor-daemon actor-join actor-kill actor-kill-pid
89                 actor-lifetime actor-migration actor-suspend actor-yield
90                 app-bittorrent app-chainsend app-masterworker app-pingpong app-token-ring 
91                 async-wait async-waitall async-waitany
92                 cloud-capping cloud-migration cloud-simple
93                 dht-chord dht-kademlia
94                 energy-exec energy-boot energy-link energy-vm
95                 exec-async exec-basic exec-dvfs exec-monitor exec-ptask exec-remote
96                 platform-properties plugin-hostload mutex
97                 io-file-system io-file-remote io-storage-raw
98                 replay-comm replay-storage
99                 routing-get-clusters
100                 )
101   ADD_TESH_FACTORIES(s4u-${example} "thread;ucontext;raw;boost" 
102                                     --setenv bindir=${CMAKE_CURRENT_BINARY_DIR}/${example} 
103                                     --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms 
104                                     --cd ${CMAKE_CURRENT_SOURCE_DIR}/${example} 
105                                     ${CMAKE_HOME_DIRECTORY}/examples/s4u/${example}/s4u-${example}.tesh)
106 endforeach()
107
108 foreach (example trace-platform)
109   ADD_TESH(s4u-${example} --setenv bindir=${CMAKE_CURRENT_BINARY_DIR}/${example}
110                           --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms 
111                           ${CMAKE_HOME_DIRECTORY}/examples/s4u/${example}/s4u-${example}.tesh)
112 endforeach()