X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2FCMakeLists.txt;h=fe1d4f977c4f30c3fbb41910c09f74ad951ef9f1;hp=c5da7506628b15996402ca7f2a53ab1e8456bc53;hb=1cc49e5bd7542366995f501adf60da4ad90869e2;hpb=85fb228631cfb087ce80f4b778fae5f1c3877008 diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index c5da7506..fe1d4f97 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -1,7 +1,6 @@ # 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 @@ -12,23 +11,32 @@ set(SOURCES bufferviewconfig.cpp bufferviewmanager.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 quassel.cpp + remotepeer.cpp settings.cpp signalproxy.cpp syncableobject.cpp - util.cpp) + util.cpp + + protocols/legacy/legacypeer.cpp +) set(MOC_HDRS aliasmanager.h @@ -41,23 +49,32 @@ set(MOC_HDRS 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) + syncableobject.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 + protocol.h types.h util.h) @@ -73,20 +90,19 @@ 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_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 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) -if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Linux") - find_library(libdl dl) - if(NOT libdl MATCHES "NOTFOUND") - target_link_libraries(mod_common ${libdl}) - endif(NOT libdl MATCHES "NOTFOUND") -endif(CMAKE_HOST_SYSTEM_NAME STREQUAL "Linux") +target_link_libraries(mod_common ${CMAKE_DL_LIBS})