Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-07-30 08:20:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-30 08:22:09 +0300
commit6f1514d22d1908c1c4418d2ef33b03c499687a51 (patch)
tree70f40f4c7f39ec2a55af755e9da106e317e9855a /CMakeLists.txt
parent83227de828c9cb8f7807e1d15308bda0bc261fab (diff)
CMake: omit superfluous Up-to-date messages
Causes a lot of noise when building the install target.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
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)