X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2FCMakeLists.txt;fp=src%2Fclient%2FCMakeLists.txt;h=783e8ddd4631feeb2a4fd54c209a894fb4453324;hp=7e171d253448a0025774da6a50188f86f2bbe16d;hb=0216d4a650c02155b5bcd517567209f674d8a120;hpb=4af261c83c6dfd578886afc6da23e5ded067b5c9 diff --git a/src/client/CMakeLists.txt b/src/client/CMakeLists.txt index 7e171d25..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 @@ -38,13 +37,9 @@ set(SOURCES abstractui.h ) -if (USE_QT5) - list(APPEND qt_modules Widgets) -endif() - -qt_add_resources(SOURCES ${CLIENT_RCS}) +qt5_add_resources(SOURCES ${CLIENT_RCS}) add_library(mod_client STATIC ${SOURCES}) -qt_use_modules(mod_client Network Core Gui ${qt_modules}) +qt5_use_modules(mod_client Network Core Gui Widgets) target_link_libraries(mod_client mod_common)