X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2FCMakeLists.txt;h=f53988d082d16612d9d4918f998507be9c5f3305;hp=fe1d4f977c4f30c3fbb41910c09f74ad951ef9f1;hb=7c0eb0111b70089f563ee793e2b52036b76ca643;hpb=1cc49e5bd7542366995f501adf60da4ad90869e2 diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index fe1d4f97..f53988d0 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -1,20 +1,24 @@ -# Builds the common module +quassel_add_module(Common EXPORT) -setup_qt_variables(Core Network) - -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 @@ -28,81 +32,65 @@ set(SOURCES 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 - protocols/legacy/legacypeer.cpp -) + serializers/serializers.cpp -set(MOC_HDRS - aliasmanager.h - backlogmanager.h - basichandler.h - buffersyncer.h - bufferviewconfig.h - bufferviewmanager.h - coreinfo.h - eventmanager.h - identity.h - ignorelistmanager.h - internalpeer.h - ircchannel.h - irclisthelper.h - ircuser.h - network.h - networkconfig.h - remotepeer.h - settings.h - signalproxy.h - syncableobject.h - - protocols/legacy/legacypeer.h -) + protocols/datastream/datastreampeer.cpp + protocols/legacy/legacypeer.cpp -set(HEADERS ${MOC_HDRS} - abstractcliparser.h - bufferinfo.h - cliparser.h - ctcpevent.h - event.h - ircevent.h - messageevent.h - networkevent.h - logger.h - message.h + # needed for automoc + irccap.h protocol.h - types.h - util.h) - -if(APPLE) - set(SOURCES ${SOURCES} mac_utils.cpp) - set(HEADERS ${HEADERS} mac_utils.h) -endif(APPLE) +) -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}) -include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR} ${QUASSEL_QT_INCLUDES}) # for version.inc and version.gen +target_link_libraries(${TARGET} PUBLIC + ${CMAKE_DL_LIBS} + Boost::boost + Qt5::Core + Qt5::Network + ZLIB::ZLIB +) -if(NOT WITH_QT5) - qt4_wrap_cpp(MOC ${MOC_HDRS}) -endif(NOT WITH_QT5) +if (EMBED_DATA) + set_property(SOURCE quassel.cpp APPEND PROPERTY COMPILE_DEFINITIONS EMBED_DATA) +endif() -set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES version.gen) +if (HAVE_SYSLOG) + target_compile_definitions(${TARGET} PRIVATE -DHAVE_SYSLOG) +endif() -add_library(mod_common STATIC ${SOURCES} ${HEADERS} ${MOC}) -set_target_properties(mod_common PROPERTIES COMPILE_FLAGS "${QUASSEL_QT_COMPILEFLAGS}") +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_link_libraries(mod_common "-framework CoreServices" "-framework CoreFoundation") -endif(APPLE) +if (APPLE) + 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}) +target_link_if_exists(${TARGET} PUBLIC Quassel::Resource::I18n)