X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3e978b7ee3fb648f19de9aeb4450a98e30dd437b..ed26e84f533a3dc510abdc384aee02506ab9798b:/examples/s4u/CMakeLists.txt diff --git a/examples/s4u/CMakeLists.txt b/examples/s4u/CMakeLists.txt index f649ba1c86..5a6183f069 100644 --- a/examples/s4u/CMakeLists.txt +++ b/examples/s4u/CMakeLists.txt @@ -1,4 +1,5 @@ -foreach (example basic io mutex actions-comm) +foreach (example actions-comm actions-storage actor-create actor-kill actor-migration actor-suspend + app-masterworker app-token-ring io mutex ) add_executable (s4u_${example} ${example}/s4u_${example}.cpp) target_link_libraries(s4u_${example} simgrid) set_target_properties(s4u_${example} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${example}) @@ -7,19 +8,20 @@ foreach (example basic io mutex actions-comm) set(examples_src ${examples_src} ${CMAKE_CURRENT_SOURCE_DIR}/${example}/s4u_${example}.cpp) endforeach() -add_executable (s4u_basic_function basic/s4u_basic_function.cpp) -target_link_libraries(s4u_basic_function simgrid) -set_target_properties(s4u_basic_function PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/basic) - set(examples_src ${examples_src} PARENT_SCOPE) set(tesh_files ${tesh_files} PARENT_SCOPE) set(xml_files ${xml_files} ${CMAKE_CURRENT_SOURCE_DIR}/actions-comm/s4u_actions-comm_split_d.xml - ${CMAKE_CURRENT_SOURCE_DIR}/actions-comm/s4u_actions-comm_d.xml PARENT_SCOPE) + ${CMAKE_CURRENT_SOURCE_DIR}/actions-comm/s4u_actions-comm_d.xml + ${CMAKE_CURRENT_SOURCE_DIR}/actions-storage/s4u_actions-storage_d.xml + ${CMAKE_CURRENT_SOURCE_DIR}/actor-create/s4u_actor-create_d.xml + ${CMAKE_CURRENT_SOURCE_DIR}/app-masterworker/s4u_app-masterworker_d.xml PARENT_SCOPE) set(txt_files ${txt_files} ${CMAKE_CURRENT_SOURCE_DIR}/actions-comm/s4u_actions-comm_split_p0.txt ${CMAKE_CURRENT_SOURCE_DIR}/actions-comm/s4u_actions-comm_split_p1.txt ${CMAKE_CURRENT_SOURCE_DIR}/actions-comm/s4u_actions-comm.txt - ${CMAKE_CURRENT_SOURCE_DIR}/README PARENT_SCOPE) + ${CMAKE_CURRENT_SOURCE_DIR}/actions-storage/s4u_actions-storage.txt + ${CMAKE_CURRENT_SOURCE_DIR}/README.doc PARENT_SCOPE) -foreach(example basic io mutex actions-comm) +foreach(example actions-comm actions-storage actor-create actor-kill actor-migration actor-suspend + app-masterworker app-token-ring io mutex ) ADD_TESH_FACTORIES(s4u-${example} "thread;ucontext;raw;boost" --setenv bindir=${CMAKE_CURRENT_BINARY_DIR}/${example} --setenv srcdir=${CMAKE_HOME_DIRECTORY}/examples/platforms --cd ${CMAKE_HOME_DIRECTORY}/examples/s4u/${example} s4u_${example}.tesh) endforeach()