Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add C version of exec-remote
[simgrid.git] / examples / c / CMakeLists.txt
index e04ef9e..48e8a61 100644 (file)
@@ -2,12 +2,14 @@
 ######################################################################
 
 foreach(x
-        actor-create actor-daemon actor-exiting actor-join actor-kill actor-migrate actor-suspend actor-yield
+        actor-create actor-daemon actor-exiting actor-join actor-kill actor-lifetime actor-migrate actor-suspend 
+        actor-yield
         app-pingpong app-token-ring 
-        async-waitall async-waitany
-        cloud-capping cloud-simple
-        energy-exec
-        io-disk-raw
+        async-wait async-waitall async-waitany
+        cloud-capping cloud-migration cloud-simple
+        exec-basic exec-dvfs exec-remote
+        energy-exec energy-exec-ptask energy-vm
+        io-disk-raw io-file-remote
         plugin-hostload)
   add_executable       (${x}-c EXCLUDE_FROM_ALL ${x}/${x}.c)
   target_link_libraries(${x}-c simgrid)
@@ -41,20 +43,28 @@ set(tesh_files    ${tesh_files} ${CMAKE_CURRENT_SOURCE_DIR}/app-chainsend/app-ch
                                 PARENT_SCOPE)
 
 set(xml_files     ${xml_files} ${CMAKE_CURRENT_SOURCE_DIR}/actor-create/actor-create_d.xml
+                               ${CMAKE_CURRENT_SOURCE_DIR}/actor-lifetime/actor-lifetime_d.xml
                                ${CMAKE_CURRENT_SOURCE_DIR}/actor-yield/actor-yield_d.xml
                                ${CMAKE_CURRENT_SOURCE_DIR}/app-chainsend/app-chainsend_d.xml
                                ${CMAKE_CURRENT_SOURCE_DIR}/app-pingpong/app-pingpong_d.xml
+                               ${CMAKE_CURRENT_SOURCE_DIR}/async-wait/async-wait_d.xml
+                               ${CMAKE_CURRENT_SOURCE_DIR}/async-wait/async-wait2_d.xml
+                               ${CMAKE_CURRENT_SOURCE_DIR}/async-wait/async-wait3_d.xml
+                               ${CMAKE_CURRENT_SOURCE_DIR}/async-wait/async-wait4_d.xml
                                ${CMAKE_CURRENT_SOURCE_DIR}/async-waitall/async-waitall_d.xml
                                ${CMAKE_CURRENT_SOURCE_DIR}/async-waitany/async-waitany_d.xml
+                               ${CMAKE_CURRENT_SOURCE_DIR}/io-file-remote/io-file-remote_d.xml
                                PARENT_SCOPE)
 
 foreach(x
-        actor-create actor-daemon actor-exiting actor-join actor-kill actor-migrate actor-suspend actor-yield
+        actor-create actor-daemon actor-exiting actor-join actor-kill actor-lifetime actor-migrate actor-suspend 
+        actor-yield
         app-chainsend app-pingpong app-token-ring
-        async-waitall async-waitany
-        cloud-capping cloud-simple
-        energy-exec
-        io-disk-raw
+        async-wait async-waitall async-waitany
+        cloud-capping cloud-migration cloud-simple
+        exec-basic exec-dvfs exec-remote
+        energy-exec energy-exec-ptask energy-vm
+        io-disk-raw io-file-remote
         plugin-hostload)
   ADD_TESH(c-${x} --setenv platfdir=${CMAKE_HOME_DIRECTORY}/examples/platforms
                   --setenv bindir=${CMAKE_BINARY_DIR}/examples/c/${x}