summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2019-09-23 14:08:43 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2019-09-24 09:56:51 +0000
commit9f6e1abfdb8bf3f0ff9484f1ef16f0b93b23a3c9 (patch)
tree89fa7f597be37de65f9a860d2fa8baa3df130758
parent76897659f8f4897acbeec8c5a575965c44ef6e0d (diff)
pro2cmake: Skip requires "skip build" message for subdir projects
It makes too much noise when configuring. Change-Id: I0a65cb99d0dc9a6c0d288cf548035cca1bea57bc Reviewed-by: Simon Hausmann <simon.hausmann@qt.io> Reviewed-by: Qt CMake Build Bot
-rwxr-xr-xutil/cmake/pro2cmake.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py
index 84dc344d2b..edd1b90caf 100755
--- a/util/cmake/pro2cmake.py
+++ b/util/cmake/pro2cmake.py
@@ -1700,7 +1700,7 @@ def handle_subdir(
grouped_sub_dirs[condition_key] = sub_dir_list_by_key
# Print any requires() blocks.
- cm_fh.write(expand_project_requirements(scope))
+ cm_fh.write(expand_project_requirements(scope, skip_message=True))
# Print the groups.
ind = spaces(indent)