From 6f1514d22d1908c1c4418d2ef33b03c499687a51 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 30 Jul 2018 15:20:34 +1000 Subject: CMake: omit superfluous Up-to-date messages Causes a lot of noise when building the install target. --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) (limited to '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) -- cgit v1.2.3