X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2FCMakeLists.txt;h=db788800200390194f8163da48134752278d4af5;hp=7503f9878c5e6fa719fffb593bd15f70c9f486e9;hb=535f934ed8d2d991a83ad10f34669dbc909f1c84;hpb=a45c9e65ddca9748bb29318a7de5cfef03900eb8 diff --git a/src/client/CMakeLists.txt b/src/client/CMakeLists.txt index 7503f987..db788800 100644 --- a/src/client/CMakeLists.txt +++ b/src/client/CMakeLists.txt @@ -3,6 +3,7 @@ # We still have some minor deps to QtUi: QItemSelectionModel # set(QT_DONT_USE_QTGUI 1) set(QT_USE_QTNETWORK 1) +set(QT_USE_QTDBUS 1) include(${QT_USE_FILE}) set(SOURCES @@ -11,29 +12,45 @@ set(SOURCES buffersettings.cpp client.cpp clientbacklogmanager.cpp + clientirclisthelper.cpp clientsettings.cpp clientsyncer.cpp + desktopnotifications.cpp + irclistmodel.cpp mappedselectionmodel.cpp networkmodel.cpp selectionmodelsynchronizer.cpp treemodel.cpp) -set(HEADERS +set(MOC_HDRS buffer.h buffermodel.h client.h clientbacklogmanager.h + clientcoreinfo.h + clientirclisthelper.h clientsyncer.h + desktopnotifications.h + irclistmodel.h networkmodel.h mappedselectionmodel.h quasselui.h selectionmodelsynchronizer.h treemodel.h) -qt4_wrap_cpp(MOC ${HEADERS}) +set(HEADERS + buffersettings.h + clientsettings.h) + +if(SPUTDEV) + set(SOURCES ${SOURCES} messagefilter.cpp messagemodel.cpp) + set(MOC_HDRS ${MOC_HDRS} messagefilter.h messagemodel.h) +endif(SPUTDEV) + +qt4_wrap_cpp(MOC ${MOC_HDRS}) include_directories(${CMAKE_SOURCE_DIR}/src/common) -add_library(mod_client STATIC ${SOURCES} ${MOC}) +add_library(mod_client STATIC ${SOURCES} ${MOC} ${HEADERS}) add_dependencies(mod_client mod_common)