X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2FCMakeLists.txt;h=ebc626f37be35b8d29512afa2145cd8b1a6bccc5;hp=7807157e9e90dc66924757e7f96bca2697428d41;hb=4ce53949ab7d52a49ae79b8817bd3aa50fada0d1;hpb=eaba93b703ba5bca4edf09f4c076a00b529115cd diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 7807157e..ebc626f3 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -1,58 +1,96 @@ -# Builds the common module +quassel_add_module(Common) -set(QT_DONT_USE_QTGUI 1) -set(QT_USE_QTNETWORK 1) -include(${QT_USE_FILE}) - -set(SOURCES +target_sources(${TARGET} PRIVATE + abstractsignalwatcher.h aliasmanager.cpp + authhandler.cpp backlogmanager.cpp + basichandler.cpp bufferinfo.cpp buffersyncer.cpp bufferviewconfig.cpp bufferviewmanager.cpp - global.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 + ircchannel.cpp + ircevent.cpp + 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 - network.cpp - ircuser.cpp - ircchannel.cpp - cliparser.cpp) - -set(MOC_HDRS - aliasmanager.h - backlogmanager.h - buffersyncer.h - bufferviewconfig.h - bufferviewmanager.h - coreinfo.h - identity.h - ircchannel.h - irclisthelper.h - ircuser.h - network.h - settings.h - signalproxy.h - syncableobject.h) - -set(HEADERS ${MOC_HDRS} - bufferinfo.h - global.h - logger.h - message.h - types.h - util.h - cliparser.h) - -qt4_wrap_cpp(MOC ${MOC_HDRS}) - -include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}) # for version.inc and version.gen -add_definitions(-DHAVE_VERSION_GEN) # we ensure that by deps in the main CMakeLists.txt -set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES version.gen) - -add_library(mod_common STATIC ${SOURCES} ${MOC}) + + serializers/serializers.cpp + + protocols/datastream/datastreampeer.cpp + protocols/legacy/legacypeer.cpp + + # needed for automoc + irccap.h + protocol.h + + ${COMMON_RCS} +) + +# Needed for finding the generated version.h +target_include_directories(${TARGET} PRIVATE ${CMAKE_BINARY_DIR}) + +target_link_libraries(${TARGET} PUBLIC + ${CMAKE_DL_LIBS} + Qt5::Core + Qt5::Network + ZLIB::ZLIB +) + +if (HAVE_SYSLOG) + target_compile_definitions(${TARGET} PRIVATE -DHAVE_SYSLOG) +endif() + +if (WIN32) + target_sources(${TARGET} PRIVATE logbacktrace_win.cpp windowssignalwatcher.cpp) +else() + 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() + target_sources(${TARGET} PRIVATE logbacktrace_unix.cpp posixsignalwatcher.cpp) +endif() + +if (APPLE) + target_sources(${TARGET} PRIVATE mac_utils.cpp) + target_link_libraries(${TARGET} PUBLIC "-framework CoreServices" "-framework CoreFoundation") +endif() + +# 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(${TARGET} po)