[Cmake-commits] [cmake-commits] king committed CMakeLists.txt 1.73 1.74

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Mar 16 16:56:01 EDT 2009


Update of /cvsroot/CMake/CMake/Tests/Complex
In directory public:/mounts/ram/cvs-serv9355a/Tests/Complex

Modified Files:
	CMakeLists.txt 
Log Message:
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.


Index: CMakeLists.txt
===================================================================
RCS file: /cvsroot/CMake/CMake/Tests/Complex/CMakeLists.txt,v
retrieving revision 1.73
retrieving revision 1.74
diff -C 2 -d -r1.73 -r1.74
*** CMakeLists.txt	16 Mar 2009 20:22:19 -0000	1.73
--- CMakeLists.txt	16 Mar 2009 20:55:58 -0000	1.74
***************
*** 15,20 ****
  ENDIF(POLICY CMP0003)
  
! # Test building without per-rule progress in Makefiles.
! SET_PROPERTY(GLOBAL PROPERTY RULE_PROGRESS OFF)
  
  # Choose whether to test CMakeLib.
--- 15,20 ----
  ENDIF(POLICY CMP0003)
  
! # Test building without per-rule echo lines in Makefiles.
! SET_PROPERTY(GLOBAL PROPERTY RULE_MESSAGES OFF)
  
  # Choose whether to test CMakeLib.



More information about the Cmake-commits mailing list