X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4a6b0a991a67e6f2f67c03fed43529e078da7115..17e66beb16f52e6ed5191e24b8220a2694805007:/tools/cmake/MakeLib.cmake diff --git a/tools/cmake/MakeLib.cmake b/tools/cmake/MakeLib.cmake index 995dd7f177..efb9595b9c 100644 --- a/tools/cmake/MakeLib.cmake +++ b/tools/cmake/MakeLib.cmake @@ -8,10 +8,6 @@ add_library(simgrid SHARED ${simgrid_sources}) set_target_properties(simgrid PROPERTIES VERSION ${libsimgrid_version}) -if(enable_ust) - ADD_DEPENDENCIES(simgrid simgrid_ust) -endif() - add_dependencies(simgrid maintainer_files) if(enable_model-checking) @@ -70,11 +66,6 @@ if(HAVE_GRAPHVIZ) endif() endif() -if(SIMGRID_HAVE_LIBSIG) - SET(SIMGRID_DEP "${SIMGRID_DEP} -lsigc-2.0") - add_definitions(-DLIBSIGC) -endif() - if(HAVE_MC) # The availability of libunwind was checked in CompleteInFiles.cmake # (that includes FindLibunwind.cmake), so simply load it now. @@ -92,8 +83,8 @@ if(HAVE_MC) endif() endif() -if(MMALLOC_WANT_OVERRIDE_LEGACY AND HAVE_GNU_LD) - SET(SIMGRID_DEP "${SIMGRID_DEP} ${DL_LIBRARY}") +if(HAVE_MC AND HAVE_GNU_LD) + SET(SIMGRID_DEP "${SIMGRID_DEP} -ldl") endif() if(HAVE_NS3) @@ -104,16 +95,6 @@ if(HAVE_POSIX_GETTIME) SET(SIMGRID_DEP "${SIMGRID_DEP} -lrt") endif() -if(HAVE_BACKTRACE_IN_LIBEXECINFO) - SET(SIMGRID_DEP "${SIMGRID_DEP} -lexecinfo") -endif(HAVE_BACKTRACE_IN_LIBEXECINFO) - -# Dependencies from USR -################################### -if(enable_ust) - set(SIMGRID_DEP "${SIMGRID_DEP} -llttng-ust") -endif() - # Compute the dependencies of SMPI ################################## if(enable_smpi AND APPLE)