X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/45c3f1cfee86fb48c96d53f8267f99b6db6e3d7a..f06041cf2c450457a0b47a49b66b19cb9133c18e:/examples/msg/io/CMakeLists.txt diff --git a/examples/msg/io/CMakeLists.txt b/examples/msg/io/CMakeLists.txt index 13a39a6369..b8c0a046fc 100644 --- a/examples/msg/io/CMakeLists.txt +++ b/examples/msg/io/CMakeLists.txt @@ -5,15 +5,18 @@ set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") add_executable(file file.c) add_executable(file_unlink file_unlink.c) add_executable(storage storage.c) +add_executable(remote remote.c) ### Add definitions for compile if(NOT WIN32) target_link_libraries(file simgrid pthread) target_link_libraries(file_unlink simgrid pthread) + target_link_libraries(remote simgrid pthread) target_link_libraries(storage simgrid pthread) else() target_link_libraries(file simgrid) target_link_libraries(file_unlink simgrid) + target_link_libraries(remote simgrid) target_link_libraries(storage simgrid) endif() @@ -21,6 +24,7 @@ set(tesh_files ${tesh_files} ${CMAKE_CURRENT_SOURCE_DIR}/io.tesh ${CMAKE_CURRENT_SOURCE_DIR}/storage.tesh + ${CMAKE_CURRENT_SOURCE_DIR}/remote.tesh PARENT_SCOPE ) set(xml_files @@ -32,6 +36,7 @@ set(examples_src ${CMAKE_CURRENT_SOURCE_DIR}/file.c ${CMAKE_CURRENT_SOURCE_DIR}/file_unlink.c ${CMAKE_CURRENT_SOURCE_DIR}/storage.c + ${CMAKE_CURRENT_SOURCE_DIR}/remote.c PARENT_SCOPE ) set(bin_files