X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/10759b01e9fac33c832b716a0fbe8c2c4e7e8859..016d020461cd4d21ea5a617d8f9099d47d7c880c:/tools/cmake/MakeLib.cmake diff --git a/tools/cmake/MakeLib.cmake b/tools/cmake/MakeLib.cmake index 2fddb53048..b1a72d6fb7 100644 --- a/tools/cmake/MakeLib.cmake +++ b/tools/cmake/MakeLib.cmake @@ -35,7 +35,7 @@ if(enable_model-checking) APPEND PROPERTY INCLUDE_DIRECTORIES "${INTERNAL_INCLUDES}") install(TARGETS simgrid-mc # install that binary without breaking the rpath on Mac RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}/) - add_dependencies(tests simgrid-mc) + add_dependencies(tests-mc simgrid-mc) endif() @@ -63,13 +63,6 @@ if(CMAKE_USE_PTHREADS_INIT) target_link_libraries(simgrid ${CMAKE_THREAD_LIBS_INIT}) endif() -if(SIMGRID_HAVE_LUA) - ADD_CUSTOM_TARGET(link_simgrid_lua ALL - DEPENDS simgrid - ) - SET(SIMGRID_DEP "${SIMGRID_DEP} ${LUA_LIBRARY} ${DL_LIBRARY}") -endif() - if(HAVE_PAPI) SET(SIMGRID_DEP "${SIMGRID_DEP} -lpapi") endif() @@ -84,7 +77,7 @@ if(HAVE_GRAPHVIZ) endif() endif() -if(SIMGRID_HAVE_MC AND NOT ${DL_LIBRARY} STREQUAL "") +if(NOT ${DL_LIBRARY} STREQUAL "") SET(SIMGRID_DEP "${SIMGRID_DEP} ${DL_LIBRARY}") endif() @@ -100,10 +93,6 @@ endif() ################################## if(enable_smpi) - if(NOT ${DL_LIBRARY} STREQUAL "") - set(SIMGRID_DEP "${SIMGRID_DEP} ${DL_LIBRARY}") # for privatization - endif() - add_executable(smpimain src/smpi/smpi_main.c) target_link_libraries(smpimain simgrid) set_target_properties(smpimain @@ -130,7 +119,7 @@ if(enable_smpi) SET(SIMGRID_DEP "${SIMGRID_DEP} -lflang") if("${CMAKE_SYSTEM}" MATCHES "FreeBSD") set(SIMGRID_DEP "${SIMGRID_DEP} -lexecinfo") - if ("${CMAKE_SYSTEM_VERSION}" MATCHES "12") + if ("${CMAKE_SYSTEM_VERSION}" STRGREATER_EQUAL "12") set(SIMGRID_DEP "${SIMGRID_DEP} -lpgmath") endif() if ("${CMAKE_SYSTEM_VERSION}" MATCHES "12\.1")