From 4068e47b56c26c0822c1c9d2134ec178f659c2b6 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 26 Jul 2011 11:52:04 +0200 Subject: [PATCH] Those two examples are UNIX only. --- teshsuite/simdag/platforms/CMakeLists.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/teshsuite/simdag/platforms/CMakeLists.txt b/teshsuite/simdag/platforms/CMakeLists.txt index 5c1d5d47a0..29421a9f95 100644 --- a/teshsuite/simdag/platforms/CMakeLists.txt +++ b/teshsuite/simdag/platforms/CMakeLists.txt @@ -5,8 +5,10 @@ set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") add_executable(basic_parsing_test basic_parsing_test.c) add_executable(is_router_test is_router_test.c) add_executable(flatifier flatifier.c) +if(NOT WIN32) add_executable(evaluate_parse_time Evaluate_parse_time.c) add_executable(evaluate_get_route_time Evaluate_get_route_time.c) +endif(NOT WIN32) ### Add definitions for compile if(NOT WIN32) @@ -16,10 +18,7 @@ target_link_libraries(basic_parsing_test simgrid m) target_link_libraries(is_router_test simgrid m) target_link_libraries(flatifier simgrid m) else(NOT WIN32) -target_link_libraries(evaluate_get_route_time simgrid) -target_link_libraries(evaluate_parse_time simgrid) target_link_libraries(basic_parsing_test simgrid) target_link_libraries(is_router_test simgrid) target_link_libraries(flatifier simgrid) -endif(NOT WIN32) - +endif(NOT WIN32) \ No newline at end of file -- 2.20.1