aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2014-01-11 20:03:54 +1100
committerMichael Palimaka <kensington@gentoo.org>2014-01-15 16:52:51 +1100
commit7e315ef53a9574ee1760b653a6b326d60e5bd15b (patch)
tree206d5e98b97c862e4418b5bb474fe7bd1f949ea5 /CMakeLists.txt
parentf714766518a47b68f17a890a260ddec56c037ab8 (diff)
downloadkconfig-7e315ef53a9574ee1760b653a6b326d60e5bd15b.tar.gz
kconfig-7e315ef53a9574ee1760b653a6b326d60e5bd15b.tar.bz2
Improve dependency specifications.
QtTest and QtConcurrent are only required for autotests, so no need to find them unconditionally. QtWidgets is not actually used - QtGui is instead. REVIEW: 114962
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b794b4b3..db0c7cc1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -7,7 +7,7 @@ set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
set(QT_REQUIRED_VERSION 5.2.0)
-find_package(Qt5 ${QT_REQUIRED_VERSION} CONFIG REQUIRED Widgets Xml Test Concurrent)
+find_package(Qt5 ${QT_REQUIRED_VERSION} CONFIG REQUIRED Gui Xml)
include(KDEInstallDirs)
include(KDEFrameworkCompilerSettings)
include(KDECMakeSettings)