X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fclient%2FCMakeLists.txt;h=783e8ddd4631feeb2a4fd54c209a894fb4453324;hb=ab7ef4d24f62b5848b628482b7762ebfc0b53e1a;hp=db788800200390194f8163da48134752278d4af5;hpb=535f934ed8d2d991a83ad10f34669dbc909f1c84;p=quassel.git diff --git a/src/client/CMakeLists.txt b/src/client/CMakeLists.txt index db788800..783e8ddd 100644 --- a/src/client/CMakeLists.txt +++ b/src/client/CMakeLists.txt @@ -1,56 +1,45 @@ # Builds the client module -# 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}) +# We still have a minor dep to QtWidgets: QAbstractItemView in BufferModel set(SOURCES - buffer.cpp + abstractmessageprocessor.cpp + backlogrequester.cpp buffermodel.cpp buffersettings.cpp + bufferviewoverlay.cpp client.cpp + clientaliasmanager.cpp + clientauthhandler.cpp clientbacklogmanager.cpp + clientbufferviewconfig.cpp + clientbufferviewmanager.cpp + clientidentity.cpp + clientignorelistmanager.cpp clientirclisthelper.cpp clientsettings.cpp - clientsyncer.cpp - desktopnotifications.cpp + clienttransfer.cpp + clienttransfermanager.cpp + clientuserinputhandler.cpp + coreaccount.cpp + coreaccountmodel.cpp + coreconnection.cpp + execwrapper.cpp irclistmodel.cpp - mappedselectionmodel.cpp + messagefilter.cpp + messagemodel.cpp networkmodel.cpp selectionmodelsynchronizer.cpp - treemodel.cpp) + transfermodel.cpp + treemodel.cpp -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) + # needed for automoc + abstractui.h +) -set(HEADERS - buffersettings.h - clientsettings.h) +qt5_add_resources(SOURCES ${CLIENT_RCS}) -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} ${HEADERS}) -add_dependencies(mod_client mod_common) +add_library(mod_client STATIC ${SOURCES}) +qt5_use_modules(mod_client Network Core Gui Widgets) +target_link_libraries(mod_client mod_common)