X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2FCMakeLists.txt;h=417e5ff3fa2dc5374737adb996b6e8a7c3cfdef3;hp=737a42c8382a5d8d7b424b311845dc1c3921f7eb;hb=53e50ab66a5b3fa00282545ebc22ce3433ecf42b;hpb=6718d7a1ccd42d7aae75e57d6974e0b1e0384044 diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 737a42c8..417e5ff3 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -1,6 +1,6 @@ -# Builds the common module +quassel_add_module(Common EXPORT) -set(SOURCES +target_sources(${TARGET} PRIVATE abstractsignalwatcher.h aliasmanager.cpp authhandler.cpp @@ -17,7 +17,7 @@ set(SOURCES event.cpp eventmanager.cpp expressionmatch.cpp - # expressionmatchtests.cpp + funchelpers.h highlightrulemanager.cpp identity.cpp ignorelistmanager.cpp @@ -25,9 +25,11 @@ set(SOURCES ircchannel.cpp ircevent.cpp irclisthelper.cpp + ircdecoder.cpp + ircencoder.cpp + irctag.cpp ircuser.cpp logger.cpp - logmessage.cpp message.cpp messageevent.cpp network.cpp @@ -58,39 +60,40 @@ set(SOURCES protocol.h ) -if (QCA2-QT5_FOUND) - set(SOURCES ${SOURCES} keyevent.cpp) -endif() +# Needed for finding the generated version.h +target_include_directories(${TARGET} PRIVATE ${CMAKE_BINARY_DIR}) -if (HAVE_SYSLOG) - add_definitions(-DHAVE_SYSLOG) +target_link_libraries(${TARGET} PUBLIC + ${CMAKE_DL_LIBS} + Boost::boost + Qt5::Core + Qt5::Network + ZLIB::ZLIB +) + +if (EMBED_DATA) + set_property(SOURCE quassel.cpp APPEND PROPERTY COMPILE_DEFINITIONS EMBED_DATA) endif() -if (APPLE) - set(SOURCES ${SOURCES} mac_utils.cpp) +if (HAVE_SYSLOG) + target_compile_definitions(${TARGET} PRIVATE -DHAVE_SYSLOG) endif() if (WIN32) - set(SOURCES ${SOURCES} logbacktrace_win.cpp windowssignalwatcher.cpp) + target_sources(${TARGET} PRIVATE logbacktrace_win.cpp windowssignalwatcher.cpp) else() - if (EXECINFO_FOUND) - add_definitions(-DHAVE_EXECINFO) - include_directories(${EXECINFO_INCLUDES}) + if (Backtrace_FOUND) + configure_file(backtrace_config.h.in backtrace_config.h) + target_include_directories(${TARGET} PRIVATE ${Backtrace_INCLUDE_DIRS}) + target_link_libraries(${TARGET} PRIVATE ${Backtrace_LIBRARIES}) + set_property(SOURCE logbacktrace_unix.cpp posixsignalwatcher.cpp APPEND PROPERTY COMPILE_DEFINITIONS HAVE_BACKTRACE) endif() - set(SOURCES ${SOURCES} logbacktrace_unix.cpp posixsignalwatcher.cpp) + target_sources(${TARGET} PRIVATE logbacktrace_unix.cpp posixsignalwatcher.cpp) endif() -qt5_add_resources(SOURCES ${COMMON_RCS}) - -add_library(mod_common STATIC ${SOURCES}) -qt5_use_modules(mod_common Core Network) - if (APPLE) - target_link_libraries(mod_common "-framework CoreServices" "-framework CoreFoundation") + target_sources(${TARGET} PRIVATE mac_utils.cpp) + target_link_libraries(${TARGET} PUBLIC "-framework CoreServices" "-framework CoreFoundation") endif() -target_link_libraries(mod_common ${CMAKE_DL_LIBS} ${EXECINFO_LIBRARIES} ZLIB::ZLIB) - -# This is needed so translations are generated before trying to build the qrc. -# Should probably find a nicer solution with proper dependencies between the involved files, though... -add_dependencies(mod_common po) +target_link_if_exists(${TARGET} PUBLIC Quassel::Resource::I18n)