Skip to content
Snippets Groups Projects
Commit 6f1514d2 authored by Campbell Barton's avatar Campbell Barton
Browse files

CMake: omit superfluous Up-to-date messages

Causes a lot of noise when building the install target.
parent 83227de8
No related branches found
No related tags found
No related merge requests found
...@@ -62,6 +62,11 @@ if(NOT DEFINED CMAKE_BUILD_TYPE_INIT) ...@@ -62,6 +62,11 @@ if(NOT DEFINED CMAKE_BUILD_TYPE_INIT)
set(CMAKE_BUILD_TYPE_INIT "Release") set(CMAKE_BUILD_TYPE_INIT "Release")
endif() 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 # quiet output for Makefiles, 'make -s' helps too
# set_property(GLOBAL PROPERTY RULE_MESSAGES OFF) # set_property(GLOBAL PROPERTY RULE_MESSAGES OFF)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment