From 900df4812278f8c9cde915690a2be355307f09dd Mon Sep 17 00:00:00 2001 From: Alexandru Croitor Date: Sat, 21 Sep 2019 17:41:20 +0200 Subject: [PATCH] Skip converting projects under tests/auto/installed_cmake Change-Id: Id26320fb55f7f0ae4b18726b0794a4a1f169c80f Reviewed-by: Alexandru Croitor --- util/cmake/pro2cmake.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py index 39d6fdb624..a8bd573368 100755 --- a/util/cmake/pro2cmake.py +++ b/util/cmake/pro2cmake.py @@ -3177,6 +3177,8 @@ def should_convert_project(project_file_path: str = "") -> bool: # Skip cmake auto tests, they should not be converted. if project_relative_path.startswith("tests/auto/cmake"): return False + if project_relative_path.startswith("tests/auto/installed_cmake"): + return False # Skip qmake testdata projects. if project_relative_path.startswith("tests/auto/tools/qmake/testdata"):