]> AND Public Git Repository - simgrid.git/blobdiff - examples/simdag/scheduling/CMakeLists.txt
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Let simgrid.dtd to be accessible from the web in order to enable automatic validation...
[simgrid.git] / examples / simdag / scheduling / CMakeLists.txt
index e95afa6806e3b482e3100c7674384b4b8db93192..e112e4a4dda7909b7880e8db49350b02e22fd479 100644 (file)
@@ -1,8 +1,12 @@
 cmake_minimum_required(VERSION 2.6)
 
-set(EXECUTABLE_OUTPUT_PATH "${PROJECT_DIRECTORY}/examples/simdag/scheduling/")
+set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}")
 
 add_executable(minmin_test minmin_test.c)
 
 ### Add definitions for compile
+if(NOT WIN32)
 target_link_libraries(minmin_test simgrid pthread m)
+else(NOT WIN32)
+target_link_libraries(minmin_test simgrid)
+endif(NOT WIN32)