Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Actually, we run tests to see the problems when they exist
[simgrid.git] / buildtools / Cmake / MakeLibWin.cmake
index cb29b3d..a8794ba 100644 (file)
@@ -1,9 +1,7 @@
 ### Make Libs
 #>gcc c:\simgrid-trunk\examples\msg\icomms\peer.c -static -Lc:\simgrid-trunk\lib -lsimgrid -Ic:\simgrid-trunk\include -lwsock32
 add_library(simgrid SHARED ${simgrid_sources})
-add_library(gras SHARED ${gras_sources})
 
-set_target_properties(gras     PROPERTIES COMPILE_FLAGS "-D_XBT_DLL_EXPORT -DDLL_EXPORT" VERSION ${libgras_version}    OUTPUT_NAME "gras")
 set_target_properties(simgrid  PROPERTIES COMPILE_FLAGS "-D_XBT_DLL_EXPORT -DDLL_EXPORT" VERSION ${libsimgrid_version} OUTPUT_NAME "simgrid")
 
 if(enable_smpi)
@@ -28,7 +26,6 @@ else()
     )
 endif()
 
-set(GRAS_DEP "ws2_32 ${PATH_PTHREAD_LIB}")
 set(SIMGRID_DEP "ws2_32 ${PATH_PCRE_LIB} ${PATH_PTHREAD_LIB}")
 set(SMPI_DEP "${LIBRARY_OUTPUT_PATH}/libsimgrid.dll")
 
@@ -39,7 +36,6 @@ else()
   #        message(FATAL_ERROR "Sorry, Simgrid fails with full 64bits for now! Please contact us.")
 endif()
 
-target_link_libraries(gras     ${GRAS_DEP})
 target_link_libraries(simgrid  ${SIMGRID_DEP})
 if(enable_smpi)
 add_dependencies(smpi simgrid)