X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/45c3f1cfee86fb48c96d53f8267f99b6db6e3d7a..fc0a76c21f0bceb0314aee5d62f785ea8009495e:/teshsuite/msg/storage/CMakeLists.txt diff --git a/teshsuite/msg/storage/CMakeLists.txt b/teshsuite/msg/storage/CMakeLists.txt index 55b0bccec6..7a217aba02 100644 --- a/teshsuite/msg/storage/CMakeLists.txt +++ b/teshsuite/msg/storage/CMakeLists.txt @@ -3,12 +3,15 @@ cmake_minimum_required(VERSION 2.6) set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") add_executable(storage_basic storage_basic.c) +add_executable(concurrent_rw concurrent_rw.c) ### Add definitions for compile if(NOT WIN32) target_link_libraries(storage_basic simgrid m pthread ) + target_link_libraries(concurrent_rw simgrid m pthread ) else() target_link_libraries(storage_basic simgrid) + target_link_libraries(concurrent_rw simgrid) endif() set(tesh_files @@ -20,11 +23,13 @@ set(xml_files ${xml_files} ${CMAKE_CURRENT_SOURCE_DIR}/platform.xml ${CMAKE_CURRENT_SOURCE_DIR}/deployment.xml + ${CMAKE_CURRENT_SOURCE_DIR}/one_host_platform.xml PARENT_SCOPE ) set(teshsuite_src ${teshsuite_src} ${CMAKE_CURRENT_SOURCE_DIR}/storage_basic.c + ${CMAKE_CURRENT_SOURCE_DIR}/concurrent_rw.c PARENT_SCOPE ) set(bin_files