[Cmake-commits] [cmake-commits] king committed CMakeGenericSystem.cmake 1.21 1.22

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


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

Modified Files:
	CMakeGenericSystem.cmake 
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: CMakeGenericSystem.cmake
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/CMakeGenericSystem.cmake,v
retrieving revision 1.21
retrieving revision 1.22
diff -C 2 -d -r1.21 -r1.22
*** CMakeGenericSystem.cmake	16 Mar 2009 20:22:19 -0000	1.21
--- CMakeGenericSystem.cmake	16 Mar 2009 20:55:58 -0000	1.22
***************
*** 34,40 ****
      )
    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)
  ENDIF(CMAKE_GENERATOR MATCHES "Makefiles")
  
--- 34,40 ----
      )
    MARK_AS_ADVANCED(CMAKE_COLOR_MAKEFILE)
!   IF(DEFINED CMAKE_RULE_MESSAGES)
!     SET_PROPERTY(GLOBAL PROPERTY RULE_MESSAGES ${CMAKE_RULE_MESSAGES})
!   ENDIF(DEFINED CMAKE_RULE_MESSAGES)
  ENDIF(CMAKE_GENERATOR MATCHES "Makefiles")
  



More information about the Cmake-commits mailing list