X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2FCMakeLists.txt;fp=src%2Fcore%2FCMakeLists.txt;h=f2cbb48a686507f43f37c5a0ffc8e3cd6e3f57b1;hp=8d2e9dbb47022150802c6fe4ba64e78f70b55512;hb=931e5280abc6738f94ac052af2a7e31e82487cf1;hpb=61aac1868f15babb7086d8bc6bbcff530346f438 diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 8d2e9dbb..f2cbb48a 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -64,6 +64,13 @@ if (QCA2-QT5_FOUND) list(APPEND LIBS ${QCA2-QT5_LIBRARIES}) endif() +# Build with LDAP if told to do so. +if(HAVE_LDAP) + include_directories(${LDAP_INCLUDE_DIR}) + set(SOURCES ${SOURCES} ldapauthenticator.cpp) + set(MOC_HDRS ${MOC_HDRS} ldapauthenticator.h) +endif(HAVE_LDAP) + include_directories(${CMAKE_SOURCE_DIR}/src/common) set(CORE_RCS ${CORE_RCS} ${CMAKE_CURRENT_SOURCE_DIR}/sql.qrc) @@ -73,3 +80,7 @@ add_library(mod_core STATIC ${SOURCES}) qt_use_modules(mod_core Core Network Script Sql) target_link_libraries(mod_core mod_common ${LIBS}) + +if(HAVE_LDAP) + target_link_libraries(mod_core ${LDAP_LIBRARIES}) +endif(HAVE_LDAP)