X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/963aa331797f0bc1a8173af4b3970205bcbfbd0c..dfb935741dbdd2a843f684538ab2403c082f633b:/teshsuite/xbt/CMakeLists.txt diff --git a/teshsuite/xbt/CMakeLists.txt b/teshsuite/xbt/CMakeLists.txt index 2349d4965a..5538eef272 100644 --- a/teshsuite/xbt/CMakeLists.txt +++ b/teshsuite/xbt/CMakeLists.txt @@ -1,11 +1,15 @@ cmake_minimum_required(VERSION 2.6) -set(EXECUTABLE_OUTPUT_PATH "./") -set(LIBRARY_OUTPUT_PATH "${PROJECT_DIRECTORY}/lib") +set(EXECUTABLE_OUTPUT_PATH "${PROJECT_DIRECTORY}/teshsuite/xbt/") add_executable(log_large_test log_large_test.c) add_executable(parallel_log_crashtest parallel_log_crashtest.c) ### Add definitions for compile -target_link_libraries(log_large_test gras m pthread -fprofile-arcs) -target_link_libraries(parallel_log_crashtest gras m pthread -fprofile-arcs) +if(NOT WIN32) +target_link_libraries(log_large_test gras m pthread ) +target_link_libraries(parallel_log_crashtest gras m pthread ) +else(NOT WIN32) +target_link_libraries(log_large_test gras) +target_link_libraries(parallel_log_crashtest gras) +endif(NOT WIN32) \ No newline at end of file