Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update CMakeLists for windows
[simgrid.git] / teshsuite / gras / msg_handle / CMakeLists.txt
index 6e0aeca2713025019660b41890e0b7d5a616ad2c..ae7063413494f9b03c7811321ac614400e4879be 100644 (file)
@@ -23,6 +23,12 @@ add_custom_command(
                                        )
 
 ### Add definitions for compile
+if(NOT WIN32)
 target_link_libraries(msg_handle_simulator simgrid m pthread )
 target_link_libraries(msg_handle_client gras m pthread )
 target_link_libraries(msg_handle_server gras m pthread )
+else(NOT WIN32)
+target_link_libraries(msg_handle_simulator simgrid)
+target_link_libraries(msg_handle_client gras)
+target_link_libraries(msg_handle_server gras)
+endif(NOT WIN32)