summaryrefslogtreecommitdiff
path: root/Source/cmDepends.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-05-06 09:58:58 -0400
committerBrad King <brad.king@kitware.com>2005-05-06 09:58:58 -0400
commite8911705d6a790904f0c98f303de6ae370c60595 (patch)
tree3d612ebce8ed229dcb773797a8fc709005197df1 /Source/cmDepends.h
parent6f35a272a71a3eb642ddfa378dd6a1c4f1e9476a (diff)
downloadcmake-e8911705d6a790904f0c98f303de6ae370c60595.tar.gz
ENH: Added optional verbose output to build system dependency check.
Diffstat (limited to 'Source/cmDepends.h')
-rw-r--r--Source/cmDepends.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmDepends.h b/Source/cmDepends.h
index dab1aacc61..f48c3258b7 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.