diff options
author | Brad King <brad.king@kitware.com> | 2005-05-06 13:58:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-05-06 13:58:58 (GMT) |
commit | e8911705d6a790904f0c98f303de6ae370c60595 (patch) | |
tree | 3d612ebce8ed229dcb773797a8fc709005197df1 /Source/cmake.cxx | |
parent | 6f35a272a71a3eb642ddfa378dd6a1c4f1e9476a (diff) | |
download | CMake-e8911705d6a790904f0c98f303de6ae370c60595.zip CMake-e8911705d6a790904f0c98f303de6ae370c60595.tar.gz CMake-e8911705d6a790904f0c98f303de6ae370c60595.tar.bz2 |
ENH: Added optional verbose output to build system dependency check.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 90a3dde..e9b5a17 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1614,8 +1614,11 @@ int cmake::CheckBuildSystem() } } - // We do not need to rerun CMake. Check dependency integrity. - cmLocalUnixMakefileGenerator2::CheckDependencies(mf); + // We do not need to rerun CMake. Check dependency integrity. Use + // the make system's VERBOSE environment variable to enable verbose + // output. + bool verbose = cmSystemTools::GetEnv("VERBOSE"); + cmLocalUnixMakefileGenerator2::CheckDependencies(mf, verbose); // No need to rerun. return 0; |