Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
merge back the master trunk into the smpi branch
[simgrid.git] / testsuite / xbt / CMakeLists.txt
index cd690a1..ad4566e 100644 (file)
@@ -1,12 +1,18 @@
 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 definitions for compile
-target_link_libraries(log_usage gras m -fprofile-arcs)
-target_link_libraries(graphxml_usage simgrid m -fprofile-arcs)
-target_link_libraries(heap_bench gras m -fprofile-arcs)
+if(NOT WIN32)
+target_link_libraries(log_usage gras m )
+target_link_libraries(graphxml_usage simgrid m )
+target_link_libraries(heap_bench gras 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)