X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2FCMakeLists.txt;h=acded6ded3443b297e34ef85e40812266344b5f5;hp=765d7ba1ff6d110fb14e21430d79126f8f13c5d6;hb=7c0eb0111b70089f563ee793e2b52036b76ca643;hpb=81c2e2cf2c12eb6839994f95f47698e5252fc91c diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 765d7ba1..f53988d0 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -1,56 +1,96 @@ -# Builds the common module +quassel_add_module(Common EXPORT) -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 + funchelpers.h + highlightrulemanager.cpp identity.cpp + ignorelistmanager.cpp + internalpeer.cpp + ircchannel.cpp + ircevent.cpp + irclisthelper.cpp + ircuser.cpp logger.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 - backlogmanager.h - buffersyncer.h - bufferviewconfig.h - bufferviewmanager.h - coreinfo.h - identity.h - ircchannel.h - irclisthelper.h - ircuser.h - logger.h - network.h - signalproxy.h - syncableobject.h) - -set(HEADERS ${MOC_HDRS} - bufferinfo.h - global.h - message.h - settings.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 +) + +# Needed for finding the generated version.h +target_include_directories(${TARGET} PRIVATE ${CMAKE_BINARY_DIR}) + +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 (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() + +target_link_if_exists(${TARGET} PUBLIC Quassel::Resource::I18n)