X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcommon%2FCMakeLists.txt;h=1b77dafbde72301674f175db9ea0056adfa5c101;hb=8b07343ab53d37b5340a56bde2d71ff2a3afb14a;hp=46835e50c8fcc4e190995a9eff800c0bd4feebd7;hpb=5b43f2776fa53bfe15a5b3b4398dfe3e931d5802;p=quassel.git diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 46835e50..1b77dafb 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -1,6 +1,7 @@ # Builds the common module set(SOURCES + abstractsignalwatcher.h aliasmanager.cpp authhandler.cpp backlogmanager.cpp @@ -9,11 +10,15 @@ set(SOURCES buffersyncer.cpp bufferviewconfig.cpp bufferviewmanager.cpp - cliparser.cpp compressor.cpp + coreinfo.cpp ctcpevent.cpp + dccconfig.cpp event.cpp eventmanager.cpp + expressionmatch.cpp + # expressionmatchtests.cpp + highlightrulemanager.cpp identity.cpp ignorelistmanager.cpp internalpeer.cpp @@ -22,54 +27,68 @@ set(SOURCES irclisthelper.cpp ircuser.cpp logger.cpp + logmessage.cpp message.cpp messageevent.cpp network.cpp networkconfig.cpp networkevent.cpp + nickhighlightmatcher.cpp peer.cpp peerfactory.cpp + presetnetworks.cpp quassel.cpp remotepeer.cpp settings.cpp signalproxy.cpp + singleton.h syncableobject.cpp transfer.cpp transfermanager.cpp + types.cpp util.cpp + serializers/serializers.cpp + protocols/datastream/datastreampeer.cpp protocols/legacy/legacypeer.cpp # needed for automoc - coreinfo.h + irccap.h + protocol.h ) +if (HAVE_SYSLOG) + add_definitions(-DHAVE_SYSLOG) +endif() -if (HAVE_QCA2) - set(SOURCES ${SOURCES} keyevent.cpp) -endif(HAVE_QCA2) +if (APPLE) + set(SOURCES ${SOURCES} mac_utils.cpp) +endif() -if(NOT HAVE_ZLIB) - set(SOURCES ${SOURCES} ../../3rdparty/miniz/miniz.c) -endif(NOT HAVE_ZLIB) +qt5_add_resources(SOURCES ${COMMON_RCS}) -if(APPLE) - set(SOURCES ${SOURCES} mac_utils.cpp) -endif(APPLE) +add_library(mod_common STATIC ${SOURCES}) +qt5_use_modules(mod_common Core Network) -if(CMAKE_HOST_WIN32) - set(SOURCES ${SOURCES} logbacktrace_win.cpp) -endif(CMAKE_HOST_WIN32) -if(CMAKE_HOST_UNIX) - set(SOURCES ${SOURCES} logbacktrace_unix.cpp) -endif(CMAKE_HOST_UNIX) +if (WIN32) + target_sources(mod_common PRIVATE logbacktrace_win.cpp windowssignalwatcher.cpp) +else() + if (Backtrace_FOUND) + configure_file(backtrace_config.h.in backtrace_config.h) + target_compile_definitions(mod_common PRIVATE -DHAVE_BACKTRACE) + target_include_directories(mod_common PRIVATE ${Backtrace_INCLUDE_DIRS}) + target_link_libraries(mod_common PRIVATE ${Backtrace_LIBRARIES}) + endif() + target_sources(mod_common PRIVATE logbacktrace_unix.cpp posixsignalwatcher.cpp) +endif() -add_library(mod_common STATIC ${SOURCES}) -qt_use_modules(mod_common Core Network) +if (APPLE) + target_link_libraries(mod_common "-framework CoreServices" "-framework CoreFoundation") +endif() -if(APPLE) - target_link_libraries(mod_common "-framework CoreServices" "-framework CoreFoundation") -endif(APPLE) +target_link_libraries(mod_common ${CMAKE_DL_LIBS} ZLIB::ZLIB) -target_link_libraries(mod_common ${CMAKE_DL_LIBS}) +# 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)