X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fclient%2FCMakeLists.txt;h=783e8ddd4631feeb2a4fd54c209a894fb4453324;hb=ab7ef4d24f62b5848b628482b7762ebfc0b53e1a;hp=bc74eccec9d2f365d029d91ea7e83dc99f91818e;hpb=2273a95ba9c277ce6dd7a67158a3d3ed9f161182;p=quassel.git diff --git a/src/client/CMakeLists.txt b/src/client/CMakeLists.txt index bc74ecce..783e8ddd 100644 --- a/src/client/CMakeLists.txt +++ b/src/client/CMakeLists.txt @@ -1,7 +1,6 @@ # Builds the client module -# In Qt4, we still have some minor deps to QtGui: QItemSelectionModel, QSortFilterProxyModel -# Still in Qt5: QAbstractItemView in BufferModel +# We still have a minor dep to QtWidgets: QAbstractItemView in BufferModel set(SOURCES abstractmessageprocessor.cpp @@ -31,27 +30,16 @@ set(SOURCES messagemodel.cpp networkmodel.cpp selectionmodelsynchronizer.cpp + transfermodel.cpp treemodel.cpp # needed for automoc abstractui.h - clientcoreinfo.h ) -if (KDE4_FOUND) - include_directories(${KDE4_INCLUDES}) - add_definitions(-DHAVE_KDE ${KDE4_DEFINITIONS}) -endif() - -if (USE_QT5) - list(APPEND qt_modules Widgets) -endif() +qt5_add_resources(SOURCES ${CLIENT_RCS}) add_library(mod_client STATIC ${SOURCES}) -qt_use_modules(mod_client Network Core Gui ${qt_modules}) - -if (KDE4_FOUND) - target_link_libraries(mod_client ${KDE4_SOLID_LIBS}) -endif() +qt5_use_modules(mod_client Network Core Gui Widgets) -add_dependencies(mod_client mod_common) +target_link_libraries(mod_client mod_common)