summaryrefslogtreecommitdiffstats
path: root/util/cmake/pro2cmake.py
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2020-03-17 08:52:42 +0100
committerAlexandru Croitor <alexandru.croitor@qt.io>2020-03-17 09:18:01 +0100
commit605a36800f8d0eed7095242b30b574372809d3fd (patch)
tree888b93cb73d7ecc15aca2e5f4641b8c0cf86cb04 /util/cmake/pro2cmake.py
parentbeebd7f4b197b6ba918439d6a8af809744ae81d7 (diff)
CMake: pro2cmake: Handle system tiff feature
Don't exclude it, because we use it in qtimageformats. Change-Id: I0004830580dd9711cf7a5bd934ecd5a7f9036800 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io> Reviewed-by: Leander Beernaert <leander.beernaert@qt.io>
Diffstat (limited to 'util/cmake/pro2cmake.py')
-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 a50c7fe2bd..d1e96a8fd1 100755
--- a/util/cmake/pro2cmake.py
+++ b/util/cmake/pro2cmake.py
@@ -1568,6 +1568,7 @@ def map_condition(condition: str) -> str:
and is_known_3rd_party_library(feature_name[7:])
and not feature_name.startswith("system_jpeg")
and not feature_name.startswith("system_zlib")
+ and not feature_name.startswith("system_tiff")
and not feature_name.startswith("system_doubleconversion")
):
part = "ON"