X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/218c42a20c7eaba87e20cfb3eaac5ad8e0d0f739..ec1a24d4663cd65ab54e1cdad22fae268fa7f2e8:/tools/cmake/MakeLib.cmake diff --git a/tools/cmake/MakeLib.cmake b/tools/cmake/MakeLib.cmake index 50cdcf493b..188a2ec348 100644 --- a/tools/cmake/MakeLib.cmake +++ b/tools/cmake/MakeLib.cmake @@ -8,14 +8,6 @@ add_library(simgrid SHARED ${simgrid_sources}) set_target_properties(simgrid PROPERTIES VERSION ${libsimgrid_version}) -if(enable_lib_static) - add_library(simgrid_static STATIC ${simgrid_sources}) -endif() - -if(enable_ust) - ADD_DEPENDENCIES(simgrid simgrid_ust) -endif() - add_dependencies(simgrid maintainer_files) if(enable_model-checking) @@ -29,11 +21,11 @@ endif() # Compute the dependencies of SimGrid ##################################### set(SIMGRID_DEP "-lm") -if (HAVE_BOOST_CONTEXT) +if (HAVE_BOOST_CONTEXTS) set(SIMGRID_DEP "${SIMGRID_DEP} ${Boost_CONTEXT_LIBRARY}") endif() -if(HAVE_PTHREAD AND ${CONTEXT_THREADS} AND NOT APPLE) +if(HAVE_PTHREAD AND ${HAVE_THREAD_CONTEXTS} AND NOT APPLE) # Clang on recent Mac OS X is not happy about -pthread. SET(SIMGRID_DEP "${SIMGRID_DEP} -pthread") endif() @@ -61,8 +53,7 @@ if(HAVE_LUA) COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/examples/simdag/ COMMAND ${CMAKE_COMMAND} -E create_symlink ${CMAKE_BINARY_DIR}/lib/libsimgrid.${LIB_EXE} ${CMAKE_BINARY_DIR}/examples/simdag/simgrid.${LIB_EXE} #for test ) - SET(SIMGRID_DEP "${SIMGRID_DEP} -l${LIB_LUA_NAME}") - SET(SIMGRID_DEP "${SIMGRID_DEP} -ldl") + SET(SIMGRID_DEP "${SIMGRID_DEP} ${LUA_LIBRARY} -ldl") endif() if(HAVE_GRAPHVIZ) @@ -75,8 +66,9 @@ if(HAVE_GRAPHVIZ) endif() endif() -if(HAVE_LIBSIGC++) +if(SIMGRID_HAVE_LIBSIG) SET(SIMGRID_DEP "${SIMGRID_DEP} -lsigc-2.0") + add_definitions(-DLIBSIGC) endif() if(HAVE_MC) @@ -97,7 +89,7 @@ if(HAVE_MC) endif() if(MMALLOC_WANT_OVERRIDE_LEGACY AND HAVE_GNU_LD) - SET(SIMGRID_DEP "${SIMGRID_DEP} ${DL_LIBRARY}") + SET(SIMGRID_DEP "${SIMGRID_DEP} -ldl") endif() if(HAVE_NS3) @@ -112,12 +104,6 @@ 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) @@ -126,14 +112,6 @@ endif() target_link_libraries(simgrid ${SIMGRID_DEP}) -# Pass dependencies to static libs -################################## -if(enable_lib_static) - target_link_libraries(simgrid_static ${SIMGRID_DEP}) - add_dependencies(simgrid_static maintainer_files) - set_target_properties(simgrid_static PROPERTIES OUTPUT_NAME simgrid) -endif() - # Dependencies from maintainer mode ################################### if(enable_maintainer_mode AND PYTHON_EXE)