X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2FCMakeLists.txt;h=417e5ff3fa2dc5374737adb996b6e8a7c3cfdef3;hp=7c883a9082e577e4c7a28d29aee8086f702d7526;hb=53e50ab66a5b3fa00282545ebc22ce3433ecf42b;hpb=08adbf35b56f8ce8cf3a8edf614aa0c67061e60f diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 7c883a90..417e5ff3 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -1,74 +1,99 @@ -# 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 - cliparser.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 + ircdecoder.cpp + ircencoder.cpp + irctag.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 - util.cpp) + transfer.cpp + transfermanager.cpp + types.cpp + util.cpp + + serializers/serializers.cpp + + protocols/datastream/datastreampeer.cpp + protocols/legacy/legacypeer.cpp + + # needed for automoc + irccap.h + protocol.h +) -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) +# Needed for finding the generated version.h +target_include_directories(${TARGET} PRIVATE ${CMAKE_BINARY_DIR}) -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 - networkconfig.h - settings.h - signalproxy.h - syncableobject.h) +target_link_libraries(${TARGET} PUBLIC + ${CMAKE_DL_LIBS} + Boost::boost + Qt5::Core + Qt5::Network + ZLIB::ZLIB +) -set(HEADERS ${MOC_HDRS} - abstractcliparser.h - bufferinfo.h - cliparser.h - logger.h - message.h - types.h - util.h) +if (EMBED_DATA) + set_property(SOURCE quassel.cpp APPEND PROPERTY COMPILE_DEFINITIONS EMBED_DATA) +endif() -if(APPLE) - set(SOURCES ${SOURCES} mac_utils.cpp) - set(HEADERS ${HEADERS} mac_utils.h) -endif(APPLE) +if (HAVE_SYSLOG) + target_compile_definitions(${TARGET} PRIVATE -DHAVE_SYSLOG) +endif() -qt4_wrap_cpp(MOC ${MOC_HDRS}) +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() -include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}) # for version.inc and version.gen -set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES version.gen) +if (APPLE) + target_sources(${TARGET} PRIVATE mac_utils.cpp) + target_link_libraries(${TARGET} PUBLIC "-framework CoreServices" "-framework CoreFoundation") +endif() -add_library(mod_common STATIC ${SOURCES} ${MOC}) -if(APPLE) - target_link_libraries(mod_common "-framework CoreServices" "-framework CoreFoundation") -endif(APPLE) \ No newline at end of file +target_link_if_exists(${TARGET} PUBLIC Quassel::Resource::I18n)