Browse Source

ENH: adde dback in CMAKE_VERBOSE_MAKEFILE that was acc removed

Ken Martin 20 years ago
parent
commit
165d70803f
1 changed files with 5 additions and 1 deletions
  1. 5 1
      Modules/CMakeGenericSystem.cmake

+ 5 - 1
Modules/CMakeGenericSystem.cmake

@@ -24,6 +24,9 @@ ENDIF(CMAKE_COMPILER_IS_GNUCXX)
 SET (CMAKE_SKIP_RPATH "NO" CACHE BOOL
 SET (CMAKE_SKIP_RPATH "NO" CACHE BOOL
      "If set, runtime paths are not added when using shared libraries.")
      "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.") 
+
 # Choose a default install prefix for this platform.
 # Choose a default install prefix for this platform.
 IF(UNIX)
 IF(UNIX)
   SET(CMAKE_INSTALL_PREFIX "/usr/local"
   SET(CMAKE_INSTALL_PREFIX "/usr/local"
@@ -42,7 +45,8 @@ ELSE(UNIX)
 ENDIF(UNIX)
 ENDIF(UNIX)
 
 
 MARK_AS_ADVANCED(
 MARK_AS_ADVANCED(
-CMAKE_SKIP_RPATH
+  CMAKE_SKIP_RPATH
+  CMAKE_VERBOSE_MAKEFILE
 )
 )
 
 
 # always include the gcc compiler information
 # always include the gcc compiler information