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

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Mar 16 16:22:21 EDT 2009


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

Modified Files:
	CMakeLists.txt 
Log Message:
ENH: Allow projects to disable per-rule progress

This creates global property RULE_PROGRESS which can be set to disbale
per-rule progress reporting.  On Windows, progress reports may cause a
noticable delay due to the cost of starting an extra process.  This
feature will allow scripted builds to avoid the cost since they do not
need detailed progress anyway.  See issue #8726.


Index: CMakeLists.txt
===================================================================
RCS file: /cvsroot/CMake/CMake/Tests/Complex/CMakeLists.txt,v
retrieving revision 1.72
retrieving revision 1.73
diff -C 2 -d -r1.72 -r1.73
*** CMakeLists.txt	18 Aug 2008 13:53:06 -0000	1.72
--- CMakeLists.txt	16 Mar 2009 20:22:19 -0000	1.73
***************
*** 15,18 ****
--- 15,21 ----
  ENDIF(POLICY CMP0003)
  
+ # Test building without per-rule progress in Makefiles.
+ SET_PROPERTY(GLOBAL PROPERTY RULE_PROGRESS OFF)
+ 
  # Choose whether to test CMakeLib.
  SET(COMPLEX_TEST_CMAKELIB 1)



More information about the Cmake-commits mailing list