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/cmDepends.h | |
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/cmDepends.h')
-rw-r--r-- | Source/cmDepends.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmDepends.h b/Source/cmDepends.h index dab1aac..f48c325 100644 --- a/Source/cmDepends.h +++ b/Source/cmDepends.h @@ -31,7 +31,7 @@ class cmDepends public: /** Instances need to know the build directory name and the relative path from the build directory to the target file. */ - cmDepends(const char* dir, const char* targetFile); + cmDepends(const char* dir, const char* targetFile, bool verbose); /** Virtual destructor to cleanup subclasses properly. */ virtual ~cmDepends(); @@ -74,6 +74,9 @@ protected: // The name of the .depends file marking when dependencies were generated. std::string m_DependsMarkFile; + // Flag for verbose output. + bool m_Verbose; + private: cmDepends(cmDepends const&); // Purposely not implemented. void operator=(cmDepends const&); // Purposely not implemented. |