[Cmake-commits] [cmake-commits] alex committed CMakeGenericSystem.cmake 1.19 1.20

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Jan 9 20:18:28 EST 2009


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

Modified Files:
	CMakeGenericSystem.cmake 
Log Message:
STYLE: this is not necessary anymore for kdevelop, the kdevelop generator
now generates the project so that the environment variable VERBOSE is set to
1 when make is executed by kdevelop (and additionally this didn't work,
since CMAKE_GENERATOR never matches KDevelop3, this is now in
CMAKE_EXTRA_GENERATOR)

Alex


Index: CMakeGenericSystem.cmake
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/CMakeGenericSystem.cmake,v
retrieving revision 1.19
retrieving revision 1.20
diff -C 2 -d -r1.19 -r1.20
*** CMakeGenericSystem.cmake	17 Jan 2008 20:54:49 -0000	1.19
--- CMakeGenericSystem.cmake	10 Jan 2009 01:18:25 -0000	1.20
***************
*** 27,35 ****
       "If set, runtime paths are not added when using shared libraries.")
  
! SET(CMAKE_INIT_VALUE FALSE)
! IF(CMAKE_GENERATOR MATCHES "KDevelop3")
!   SET(CMAKE_INIT_VALUE TRUE)
! ENDIF(CMAKE_GENERATOR MATCHES "KDevelop3")
! SET(CMAKE_VERBOSE_MAKEFILE ${CMAKE_INIT_VALUE} CACHE BOOL "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make.  This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo.") 
  
  IF(CMAKE_GENERATOR MATCHES "Makefiles")
--- 27,31 ----
       "If set, runtime paths are not added when using shared libraries.")
  
! SET(CMAKE_VERBOSE_MAKEFILE FALSE CACHE BOOL "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make.  This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo.") 
  
  IF(CMAKE_GENERATOR MATCHES "Makefiles")



More information about the Cmake-commits mailing list