X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2FCMakeLists.txt;h=d6f467f6dec3e75e69506cee1b792d8280534785;hp=a167d8f267e96eb044a77eacf979789d62ee8945;hb=bc544f569faedea50c7715844a2261872796c683;hpb=0de0a17782cf478d638a532f36898197af88e0bc diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index a167d8f2..d6f467f6 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -1,7 +1,5 @@ # Builds the core module -setup_qt_variables(Network Sql Script) - set(SOURCES abstractsqlstorage.cpp core.cpp @@ -42,24 +40,37 @@ set(SOURCES coreeventmanager.h ) +set(LIBS ) + if(HAVE_SSL) set(SOURCES ${SOURCES} sslserver.cpp) include_directories(${OPENSSL_INCLUDE_DIR}) endif(HAVE_SSL) -if(HAVE_QCA2) - set(SOURCES ${SOURCES} cipher.cpp) - include_directories(${QCA2_INCLUDE_DIR}) -endif(HAVE_QCA2) +if (QCA2_FOUND) + add_definitions(-DHAVE_QCA2) + include_directories(${QCA2_INCLUDE_DIR}) + list(APPEND SOURCES cipher.cpp) + list(APPEND LIBS ${QCA2_LIBRARIES}) +endif() -include_directories(${CMAKE_SOURCE_DIR}/src/common ${QUASSEL_QT_INCLUDES}) +if (QCA2-QT5_FOUND) + add_definitions(-DHAVE_QCA2) + include_directories(${QCA2-QT5_INCLUDE_DIR}) + list(APPEND SOURCES cipher.cpp) + list(APPEND LIBS ${QCA2-QT5_LIBRARIES}) +endif() -set(CORE_RCS ${CORE_RCS} core/sql.qrc PARENT_SCOPE) +include_directories(${CMAKE_SOURCE_DIR}/src/common) + +set(CORE_RCS ${CORE_RCS} ${CMAKE_CURRENT_SOURCE_DIR}/sql.qrc) +qt_add_resources(SOURCES ${CORE_RCS}) add_library(mod_core STATIC ${SOURCES}) +qt_use_modules(mod_core Core Network Script Sql) + add_dependencies(mod_core mod_common) -set_target_properties(mod_core PROPERTIES COMPILE_FLAGS "${QUASSEL_QT_COMPILEFLAGS}") -if(HAVE_QCA2) - target_link_libraries(mod_core ${QCA2_LIBRARIES}) -endif(HAVE_QCA2) +if (LIBS) + target_link_libraries(mod_core ${LIBS}) +endif()