diff options
| author | Alexandru Croitor <[email protected]> | 2019-09-21 17:41:20 +0200 |
|---|---|---|
| committer | Alexandru Croitor <[email protected]> | 2019-09-21 15:48:52 +0000 |
| commit | 900df4812278f8c9cde915690a2be355307f09dd (patch) | |
| tree | affc37dbe19a2484a0f0f12915cea3ae74d84696 /util | |
| parent | cfa3c646253c88cbda366d6a374b81a941caa241 (diff) | |
Skip converting projects under tests/auto/installed_cmake
Change-Id: Id26320fb55f7f0ae4b18726b0794a4a1f169c80f
Reviewed-by: Alexandru Croitor <[email protected]>
Diffstat (limited to 'util')
| -rwxr-xr-x | util/cmake/pro2cmake.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py index 39d6fdb6246..a8bd5733686 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"): |
