[Bf-blender-cvs] [6f1514d22d1] master: CMake: omit superfluous Up-to-date messages

Campbell Barton noreply at git.blender.org
Mon Jul 30 07:22:10 CEST 2018


Commit: 6f1514d22d1908c1c4418d2ef33b03c499687a51
Author: Campbell Barton
Date:   Mon Jul 30 15:20:34 2018 +1000
Branches: master
https://developer.blender.org/rB6f1514d22d1908c1c4418d2ef33b03c499687a51

CMake: omit superfluous Up-to-date messages

Causes a lot of noise when building the install target.

===================================================================

M	CMakeLists.txt

===================================================================

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4de98860a61..7b018905e4f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -62,6 +62,11 @@ if(NOT DEFINED CMAKE_BUILD_TYPE_INIT)
 	set(CMAKE_BUILD_TYPE_INIT "Release")
 endif()
 
+# Omit superfluous "Up-to-date" messages.
+if(NOT DEFINED CMAKE_INSTALL_MESSAGE)
+	set(CMAKE_INSTALL_MESSAGE "LAZY")
+endif()
+
 # quiet output for Makefiles, 'make -s' helps too
 # set_property(GLOBAL PROPERTY RULE_MESSAGES OFF)



More information about the Bf-blender-cvs mailing list