diff options
author | Michael Palimaka <kensington@gentoo.org> | 2014-01-11 20:03:54 +1100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2014-01-15 16:52:51 +1100 |
commit | 7e315ef53a9574ee1760b653a6b326d60e5bd15b (patch) | |
tree | 206d5e98b97c862e4418b5bb474fe7bd1f949ea5 /src | |
parent | f714766518a47b68f17a890a260ddec56c037ab8 (diff) | |
download | kconfig-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 'src')
-rw-r--r-- | src/gui/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/CMakeLists.txt b/src/gui/CMakeLists.txt index e6ef7468..fc2ace47 100644 --- a/src/gui/CMakeLists.txt +++ b/src/gui/CMakeLists.txt @@ -1,6 +1,6 @@ -find_package(Qt5Widgets 5.2.0 REQUIRED NO_MODULE) -find_package(Qt5Xml 5.2.0 REQUIRED NO_MODULE) +find_package(Qt5Gui ${QT_REQUIRED_VERSION} REQUIRED NO_MODULE) +find_package(Qt5Xml ${QT_REQUIRED_VERSION} REQUIRED NO_MODULE) set(libkconfiggui_SRCS kconfiggui.cpp |