X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2FCMakeLists.txt;h=1b77dafbde72301674f175db9ea0056adfa5c101;hp=9eeb91ce1bc7e41c902e21a3228c83cb53b801d3;hb=8b07343ab53d37b5340a56bde2d71ff2a3afb14a;hpb=db9bba48e1674f169d1ed3cf184e5fa56dbe3a80 diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 9eeb91ce..1b77dafb 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -1,8 +1,7 @@ # Builds the common module -setup_qt_variables(Core Network) - set(SOURCES + abstractsignalwatcher.h aliasmanager.cpp authhandler.cpp backlogmanager.cpp @@ -11,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 @@ -24,102 +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 -) - -set(MOC_HDRS - aliasmanager.h - authhandler.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 - peer.h - peerfactory.h - remotepeer.h - settings.h - signalproxy.h - syncableobject.h - transfer.h - transfermanager.h - protocols/datastream/datastreampeer.h - protocols/legacy/legacypeer.h -) - -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 (HAVE_QCA2) - set(SOURCES ${SOURCES} keyevent.cpp) - set(HEADERS ${HEADERS} keyevent.h) -endif(HAVE_QCA2) +) -if(APPLE) - set(SOURCES ${SOURCES} mac_utils.cpp) - set(HEADERS ${HEADERS} mac_utils.h) -endif(APPLE) +if (HAVE_SYSLOG) + add_definitions(-DHAVE_SYSLOG) +endif() -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 (APPLE) + set(SOURCES ${SOURCES} mac_utils.cpp) +endif() -include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR} ${QUASSEL_QT_INCLUDES}) # for version.inc and version.gen +qt5_add_resources(SOURCES ${COMMON_RCS}) -if(NOT WITH_QT5) - qt4_wrap_cpp(MOC ${MOC_HDRS}) -endif(NOT WITH_QT5) +add_library(mod_common STATIC ${SOURCES}) +qt5_use_modules(mod_common Core Network) -set_directory_properties(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES version.gen) +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} ${HEADERS} ${MOC}) -set_target_properties(mod_common PROPERTIES COMPILE_FLAGS "${QUASSEL_QT_COMPILEFLAGS}") +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)