summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2020-12-09 15:22:14 +0100
committerJoerg Bornemann <joerg.bornemann@qt.io>2020-12-09 22:12:18 +0100
commit3776c51fa02897f8781f3854db2b20d3fe217808 (patch)
treef1bc26038667a2cb91e6107e36a174da95632ae1 /util
parent88fe9d3d977b865802085fbd6b5a43dbb39b116d (diff)
pro2cmake: Handle conditions for feature system_webp
This is needed for the qtimageformats build with bundled libwebp. Change-Id: I4d32392d7362f254e9633197497b6d78e12da559 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'util')
-rwxr-xr-xutil/cmake/pro2cmake.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py
index 12dad0ebaf..b205652e6e 100755
--- a/util/cmake/pro2cmake.py
+++ b/util/cmake/pro2cmake.py
@@ -1694,6 +1694,7 @@ def map_condition(condition: str) -> str:
and not feature_name.startswith("system_sqlite")
and not feature_name.startswith("system_hunspell")
and not feature_name.startswith("system_libb2")
+ and not feature_name.startswith("system_webp")
):
part = "ON"
elif feature == "dlopen":