Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
put pid on 2 chars to help sorting, and revalidate the output (timestamps changed...
[simgrid.git] / examples / gras / timer / CMakeLists.txt
index ad883e9..431ee35 100644 (file)
@@ -4,7 +4,7 @@ set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/_timer_simulator.c
                                                        ${CMAKE_CURRENT_BINARY_DIR}/_timer_client.c
                                                        PROPERTIES GENERATED true)
 
-set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_SOURCE_DIR}")
+set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}")
 
 add_executable(timer_simulator         ${CMAKE_CURRENT_BINARY_DIR}/_timer_simulator.c 
                                                                ${CMAKE_CURRENT_SOURCE_DIR}/timer.c)
@@ -19,5 +19,11 @@ add_custom_command(
 )
 
 ### Add definitions for compile
+if(NOT WIN32)
 target_link_libraries(timer_simulator simgrid pthread m )
 target_link_libraries(timer_client gras pthread m )
+else(NOT WIN32)
+target_link_libraries(timer_simulator simgrid)
+target_link_libraries(timer_client gras)
+endif(NOT WIN32)
+