X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2FCMakeLists.txt;h=70c0a55bb830652f407cc91c116144a38331d18a;hp=7807157e9e90dc66924757e7f96bca2697428d41;hb=97675557b12cae69bc19febe1ddd147ddfafebdb;hpb=eaba93b703ba5bca4edf09f4c076a00b529115cd diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 7807157e..70c0a55b 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -1,58 +1,129 @@ # Builds the common module -set(QT_DONT_USE_QTGUI 1) -set(QT_USE_QTNETWORK 1) -include(${QT_USE_FILE}) +setup_qt_variables(Core Network) set(SOURCES aliasmanager.cpp + authhandler.cpp backlogmanager.cpp + basichandler.cpp bufferinfo.cpp buffersyncer.cpp bufferviewconfig.cpp bufferviewmanager.cpp - global.cpp + cliparser.cpp + compressor.cpp + coreinfo.cpp + ctcpevent.cpp + event.cpp + eventmanager.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 + peer.cpp + peerfactory.cpp + quassel.cpp + remotepeer.cpp settings.cpp signalproxy.cpp syncableobject.cpp + transfer.cpp + transfermanager.cpp util.cpp - network.cpp - ircuser.cpp - ircchannel.cpp - cliparser.cpp) + + protocols/datastream/datastreampeer.cpp + protocols/legacy/legacypeer.cpp + + ../../3rdparty/miniz/miniz.c +) set(MOC_HDRS aliasmanager.h + authhandler.h backlogmanager.h + basichandler.h buffersyncer.h bufferviewconfig.h bufferviewmanager.h + compressor.h coreinfo.h + eventmanager.h identity.h + ignorelistmanager.h + internalpeer.h ircchannel.h irclisthelper.h ircuser.h network.h + networkconfig.h + peer.h + remotepeer.h settings.h signalproxy.h - syncableobject.h) + syncableobject.h + transfer.h + transfermanager.h + + protocols/datastream/datastreampeer.h + protocols/legacy/legacypeer.h +) set(HEADERS ${MOC_HDRS} + abstractcliparser.h bufferinfo.h - global.h + cliparser.h + ctcpevent.h + event.h + ircevent.h + messageevent.h + networkevent.h logger.h message.h + peerfactory.h + protocol.h types.h - util.h - cliparser.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(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) -qt4_wrap_cpp(MOC ${MOC_HDRS}) +include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR} ${QUASSEL_QT_INCLUDES}) # for version.inc and version.gen + +if(NOT WITH_QT5) + qt4_wrap_cpp(MOC ${MOC_HDRS}) +endif(NOT WITH_QT5) -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}) +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(APPLE) + +target_link_libraries(mod_common ${CMAKE_DL_LIBS})