diff options
author | Brad King <brad.king@kitware.com> | 2009-03-16 20:55:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-03-16 20:55:58 (GMT) |
commit | 493f88ce553ec7e39db83bd1bdf5c0896420c52d (patch) | |
tree | 12ff5faa0dff23b7e0b667a30da972d0d7673744 /Modules/CMakeGenericSystem.cmake | |
parent | 49dec94f54c6c896b2d42f6bea0b36bd429693c9 (diff) | |
download | CMake-493f88ce553ec7e39db83bd1bdf5c0896420c52d.zip CMake-493f88ce553ec7e39db83bd1bdf5c0896420c52d.tar.gz CMake-493f88ce553ec7e39db83bd1bdf5c0896420c52d.tar.bz2 |
ENH: Allow projects to disable per-rule echo lines
This creates global property RULE_MESSAGES which can be set to disbale
per-rule progress and action reporting. On Windows, these reports may
cause a noticable delay due to the cost of starting extra processes.
This feature will allow scripted builds to avoid the cost since they do
not need detailed information anyway. This replaces the RULE_PROGRESS
property created earlier as it is more complete. See issue #8726.
Diffstat (limited to 'Modules/CMakeGenericSystem.cmake')
-rw-r--r-- | Modules/CMakeGenericSystem.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/CMakeGenericSystem.cmake b/Modules/CMakeGenericSystem.cmake index 7271114..25dbb9e 100644 --- a/Modules/CMakeGenericSystem.cmake +++ b/Modules/CMakeGenericSystem.cmake @@ -33,9 +33,9 @@ IF(CMAKE_GENERATOR MATCHES "Makefiles") "Enable/Disable color output during build." ) MARK_AS_ADVANCED(CMAKE_COLOR_MAKEFILE) - IF(DEFINED CMAKE_RULE_PROGRESS) - SET_PROPERTY(GLOBAL PROPERTY RULE_PROGRESS ${CMAKE_RULE_PROGRESS}) - ENDIF(DEFINED CMAKE_RULE_PROGRESS) + IF(DEFINED CMAKE_RULE_MESSAGES) + SET_PROPERTY(GLOBAL PROPERTY RULE_MESSAGES ${CMAKE_RULE_MESSAGES}) + ENDIF(DEFINED CMAKE_RULE_MESSAGES) ENDIF(CMAKE_GENERATOR MATCHES "Makefiles") # Set a variable to indicate whether the value of CMAKE_INSTALL_PREFIX |