From 3776c51fa02897f8781f3854db2b20d3fe217808 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Wed, 9 Dec 2020 15:22:14 +0100 Subject: [PATCH] pro2cmake: Handle conditions for feature system_webp This is needed for the qtimageformats build with bundled libwebp. Change-Id: I4d32392d7362f254e9633197497b6d78e12da559 Reviewed-by: Alexandru Croitor --- util/cmake/pro2cmake.py | 1 + 1 file changed, 1 insertion(+) diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py index 12dad0ebaf5..b205652e6ee 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":