X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f322f94ddd9c5b0c80377fe0bbec20e57055ff10..b92ccbf24de98e83153f96b440ec559fc739e295:/tools/cmake/MakeLib.cmake diff --git a/tools/cmake/MakeLib.cmake b/tools/cmake/MakeLib.cmake index e84134e95d..b1a72d6fb7 100644 --- a/tools/cmake/MakeLib.cmake +++ b/tools/cmake/MakeLib.cmake @@ -27,9 +27,6 @@ set_property(TARGET simgrid add_dependencies(simgrid maintainer_files) if(enable_model-checking) - add_custom_target(tests-mc COMMENT "Recompiling the MC tests and tools.") - add_dependencies(tests tests-mc) - add_executable(simgrid-mc ${MC_SIMGRID_MC_SRC}) target_link_libraries(simgrid-mc simgrid) set_target_properties(simgrid-mc @@ -66,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() @@ -87,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() @@ -103,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