diff options
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. |