aboutsummaryrefslogtreecommitdiffstats
path: root/sources
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2020-02-18 11:09:43 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2020-02-19 08:22:33 +0100
commitd261aae6a9c93ff147b82f250fe47ab7e2e88135 (patch)
tree4435d62eb6ddffd6766b1c8ec9c41d69a39dbf4b /sources
parent29e432b9248f7b88eee668f07b33a83439f8f3ad (diff)
cmake: Fix warning about missing scope for --quiet
Remove scope, fixing: Cannot set "CMAKE_INSTALL_MESSAGE": current scope has no parent. CMake Error at data/shiboken_helpers.cmake:218 (_message): Change-Id: I7499eef3af499e1d02b548b19fca3dda7647b16e Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'sources')
-rw-r--r--sources/shiboken2/data/shiboken_helpers.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/shiboken2/data/shiboken_helpers.cmake b/sources/shiboken2/data/shiboken_helpers.cmake
index ee6c6c4d5..6bd75d0ea 100644
--- a/sources/shiboken2/data/shiboken_helpers.cmake
+++ b/sources/shiboken2/data/shiboken_helpers.cmake
@@ -206,7 +206,7 @@ endmacro()
macro(set_quiet_build)
# Don't display "up-to-date / install" messages when installing, to reduce visual clutter.
- set(CMAKE_INSTALL_MESSAGE NEVER PARENT_SCOPE)
+ set(CMAKE_INSTALL_MESSAGE NEVER)
# Override message not to display info messages when doing a quiet build.
function(message)
list(GET ARGV 0 MessageType)