From e4efd566379ff390b94b8001594d2f0f0d84c0de Mon Sep 17 00:00:00 2001 From: Alexandru Croitor Date: Fri, 20 Mar 2020 17:31:18 +0100 Subject: [PATCH] CMake: pro2cmake: Consider system-assimp for conditions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Idee55dfdd88b04792dc1485a818ab41218fa2707 Reviewed-by: Simon Hausmann Reviewed-by: MÃ¥rten Nordheim --- util/cmake/pro2cmake.py | 1 + 1 file changed, 1 insertion(+) diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py index 0aebb971f30..8f46b04c747 100755 --- a/util/cmake/pro2cmake.py +++ b/util/cmake/pro2cmake.py @@ -1569,6 +1569,7 @@ def map_condition(condition: str) -> str: 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_assimp") and not feature_name.startswith("system_doubleconversion") ): part = "ON"