Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update CMakeLists for windows
[simgrid.git] / teshsuite / simdag / network / mxn / CMakeLists.txt
index f19d099..97eb5db 100644 (file)
@@ -7,6 +7,12 @@ add_executable(test_intra_independent_comm test_intra_independent_comm.c)
 add_executable(test_intra_scatter test_intra_scatter.c)
 
 ### Add definitions for compile
+if(NOT WIN32)
 target_link_libraries(test_intra_all2all simgrid m pthread )
 target_link_libraries(test_intra_independent_comm simgrid m pthread )
 target_link_libraries(test_intra_scatter simgrid m pthread )
+else(NOT WIN32)
+target_link_libraries(test_intra_all2all simgrid)
+target_link_libraries(test_intra_independent_comm simgrid)
+target_link_libraries(test_intra_scatter simgrid)
+endif(NOT WIN32)
\ No newline at end of file