X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/db9e1e77f7d08a187ac8e5588e42b3358879de9f..a1757b8e6b03369034f2d251bcffc37e61a3c20a:/examples/gras/pmm/CMakeLists.txt diff --git a/examples/gras/pmm/CMakeLists.txt b/examples/gras/pmm/CMakeLists.txt index 9f7e3d12b3..9048fd2484 100644 --- a/examples/gras/pmm/CMakeLists.txt +++ b/examples/gras/pmm/CMakeLists.txt @@ -23,6 +23,13 @@ add_custom_command( ) ### Add definitions for compile +if(NOT WIN32) target_link_libraries(pmm_simulator simgrid pthread m ) target_link_libraries(pmm_slave gras pthread m ) target_link_libraries(pmm_master gras pthread m ) +else(NOT WIN32) +target_link_libraries(pmm_simulator simgrid) +target_link_libraries(pmm_slave gras) +target_link_libraries(pmm_master gras) +endif(NOT WIN32) +