summaryrefslogtreecommitdiffstats
path: root/util/cmake/pro2cmake.py
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2020-03-20 17:31:18 +0100
committerAlexandru Croitor <alexandru.croitor@qt.io>2020-03-23 09:55:05 +0100
commite4efd566379ff390b94b8001594d2f0f0d84c0de (patch)
tree215c2fa6d51f8820a650c0388d9a62875dd35287 /util/cmake/pro2cmake.py
parent7c04c5427f697bce5f2d7c7f0ae442962df07620 (diff)
CMake: pro2cmake: Consider system-assimp for conditions
Change-Id: Idee55dfdd88b04792dc1485a818ab41218fa2707 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io> Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@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 0aebb971f3..8f46b04c74 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"