From 605a36800f8d0eed7095242b30b574372809d3fd Mon Sep 17 00:00:00 2001 From: Alexandru Croitor Date: Tue, 17 Mar 2020 08:52:42 +0100 Subject: [PATCH] CMake: pro2cmake: Handle system tiff feature Don't exclude it, because we use it in qtimageformats. Change-Id: I0004830580dd9711cf7a5bd934ecd5a7f9036800 Reviewed-by: Simon Hausmann Reviewed-by: Leander Beernaert --- util/cmake/pro2cmake.py | 1 + 1 file changed, 1 insertion(+) 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"