X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2FCMakeLists.txt;h=04fbe3bb4d30ad3c839a8144658fd040eb90ff2d;hp=765d7ba1ff6d110fb14e21430d79126f8f13c5d6;hb=64cf9f9b8a737dad5f29447805d4004cfd03c454;hpb=81c2e2cf2c12eb6839994f95f47698e5252fc91c diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 765d7ba1..04fbe3bb 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -1,56 +1,117 @@ # 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 + 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 + quassel.cpp + remotepeer.cpp settings.cpp signalproxy.cpp syncableobject.cpp util.cpp - network.cpp - ircuser.cpp - ircchannel.cpp - cliparser.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 - logger.h network.h + networkconfig.h + peer.h + remotepeer.h + settings.h signalproxy.h - syncableobject.h) + syncableobject.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 - settings.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) -qt4_wrap_cpp(MOC ${MOC_HDRS}) +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) + +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})