X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0e8e65dad760a0ad8e48ae48a4b909c39c86b180..25b22264bc89ff9ed4f620a0bf821bd7b59cbd71:/examples/gras/synchro/CMakeLists.txt diff --git a/examples/gras/synchro/CMakeLists.txt b/examples/gras/synchro/CMakeLists.txt index d346ac9186..24c555dcf6 100644 --- a/examples/gras/synchro/CMakeLists.txt +++ b/examples/gras/synchro/CMakeLists.txt @@ -1,14 +1,30 @@ cmake_minimum_required(VERSION 2.6) -set_source_files_properties(${PROJECT_DIRECTORY}/examples/gras/synchro/_synchro_simulator.c ${PROJECT_DIRECTORY}/examples/gras/synchro/_synchro_philosopher.c -PROPERTIES GENERATED true) +set_source_files_properties(${CMAKE_CURRENT_BINARY_DIR}/_synchro_simulator.c + ${CMAKE_CURRENT_BINARY_DIR}/_synchro_philosopher.c + PROPERTIES GENERATED true) -set(EXECUTABLE_OUTPUT_PATH "./") -set(LIBRARY_OUTPUT_PATH "${PROJECT_DIRECTORY}/lib") +set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") -add_executable(synchro_simulator ${PROJECT_DIRECTORY}/examples/gras/synchro/_synchro_simulator.c ${PROJECT_DIRECTORY}/examples/gras/synchro/philosopher.c) -add_executable(synchro_philosopher ${PROJECT_DIRECTORY}/examples/gras/synchro/_synchro_philosopher.c ${PROJECT_DIRECTORY}/examples/gras/synchro/philosopher.c) +add_executable(synchro_simulator ${CMAKE_CURRENT_BINARY_DIR}/_synchro_simulator.c + ${CMAKE_CURRENT_SOURCE_DIR}/philosopher.c) +add_executable(synchro_philosopher ${CMAKE_CURRENT_BINARY_DIR}/_synchro_philosopher.c + ${CMAKE_CURRENT_SOURCE_DIR}/philosopher.c) + +add_custom_command( + OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/_synchro_simulator.c + ${CMAKE_CURRENT_BINARY_DIR}/_synchro_philosopher.c + DEPENDS gras_stub_generator ${CMAKE_CURRENT_SOURCE_DIR}/synchro.xml + COMMAND ${CMAKE_BINARY_DIR}/bin/gras_stub_generator synchro ${CMAKE_CURRENT_SOURCE_DIR}/synchro.xml + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} + ) ### Add definitions for compile -target_link_libraries(synchro_simulator simgrid pthread m -fprofile-arcs) -target_link_libraries(synchro_philosopher gras pthread m -fprofile-arcs) +if(NOT WIN32) +target_link_libraries(synchro_simulator simgrid pthread m ) +target_link_libraries(synchro_philosopher gras pthread m ) +else(NOT WIN32) +target_link_libraries(synchro_simulator simgrid) +target_link_libraries(synchro_philosopher gras) +endif(NOT WIN32) +