summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2019-06-05 22:41:38 +0200
committerSimon Hausmann <simon.hausmann@qt.io>2019-06-06 06:59:48 +0000
commit82941a3f1bab6c385376761d53456c838b6cbaad (patch)
tree287c0eb8e99368ccecb136c9aa7da73e433a7ddd /util
parentf5a494f3c12451e0ea1a9ad82ad694a652be04e2 (diff)
Fix some configure.json conditions for qtimageformats
The auto-generated add_subdirectory conditions in qtimageformats use QT_FEATURE_foo and not QT_FEATURE_system_foo. But the non-system ones don't actually check if the respective qt_find_package(TIFF) got found. Fix the conditions of the non system features to be the same as the system ones. Change-Id: I96f889cf7061721b829d562707c42aa0e29720df Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'util')
-rwxr-xr-xutil/cmake/configurejson2cmake.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/util/cmake/configurejson2cmake.py b/util/cmake/configurejson2cmake.py
index 2de2567803..f929ac142d 100755
--- a/util/cmake/configurejson2cmake.py
+++ b/util/cmake/configurejson2cmake.py
@@ -716,9 +716,15 @@ def parseFeature(ctx, feature, data, cm_fh):
'system-sqlite': None,
'system-xcb': None,
'system-zlib': None,
+ 'tiff': {
+ 'condition': 'QT_FEATURE_imageformatplugin AND TIFF_FOUND'
+ },
'use_gold_linker': None,
'verifyspec': None, # qmake specific...
'warnings_are_errors': None, # FIXME: Do we need these?
+ 'webp': {
+ 'condition': 'QT_FEATURE_imageformatplugin AND WrapWebP_FOUND'
+ },
'xkbcommon-system': None, # another system library, just named a bit different from the rest
}