X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/12a3d01e7de3d8fdefa0aeedeb0cee96936567f0..49e717ce62a05692fc037261e131f78ba52adff2:/testsuite/xbt/CMakeLists.txt diff --git a/testsuite/xbt/CMakeLists.txt b/testsuite/xbt/CMakeLists.txt index 69a1cdafb9..72310077e8 100644 --- a/testsuite/xbt/CMakeLists.txt +++ b/testsuite/xbt/CMakeLists.txt @@ -1,18 +1,21 @@ cmake_minimum_required(VERSION 2.6) -set(EXECUTABLE_OUTPUT_PATH "${PROJECT_DIRECTORY}/testsuite/xbt/") +set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") add_executable(log_usage "log_usage.c") add_executable(graphxml_usage "graphxml_usage.c") add_executable(heap_bench "heap_bench.c") +add_executable(parmap_bench "parmap_bench.c") ### Add definitions for compile if(NOT WIN32) target_link_libraries(log_usage gras m ) target_link_libraries(graphxml_usage simgrid m ) target_link_libraries(heap_bench gras m ) +target_link_libraries(parmap_bench simgrid m ) else(NOT WIN32) target_link_libraries(log_usage gras ) target_link_libraries(graphxml_usage simgrid ) target_link_libraries(heap_bench gras ) -endif(NOT WIN32) \ No newline at end of file +target_link_libraries(parmap_bench simgrid ) +endif(NOT WIN32)