From: Rolf Eike Beer Date: Wed, 29 Feb 2012 21:54:30 +0000 (+0100) Subject: use CMAKE_DL_LIBS X-Git-Tag: 0.8.0~3 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=d20a7db77425fab0c44e5bf307ba0061ddaf9faf;ds=sidebyside use CMAKE_DL_LIBS CMake provides a standard variable that holds the name of the library that contains dlopen(). Signed-off-by: Bas Pape --- diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 710cfbcd..0e3e2a1c 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -90,16 +90,4 @@ if(APPLE) target_link_libraries(mod_common "-framework CoreServices" "-framework CoreFoundation") endif(APPLE) -if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Linux") - set(FIND_LIBDL TRUE) -endif(CMAKE_HOST_SYSTEM_NAME STREQUAL "Linux") -if(CMAKE_HOST_SYSTEM_NAME STREQUAL "kFreeBSD") - set(FIND_LIBDL TRUE) -endif(CMAKE_HOST_SYSTEM_NAME STREQUAL "kFreeBSD") - -if(FIND_LIBDL) - find_library(libdl dl) - if(NOT libdl MATCHES "NOTFOUND") - target_link_libraries(mod_common ${libdl}) - endif(NOT libdl MATCHES "NOTFOUND") -endif(FIND_LIBDL) +target_link_libraries(mod_common ${CMAKE_DL_LIBS})