diff options
Diffstat (limited to 'Source/cmDepends.h')
-rw-r--r-- | Source/cmDepends.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Source/cmDepends.h b/Source/cmDepends.h index f48c325..b9e3f99 100644 --- a/Source/cmDepends.h +++ b/Source/cmDepends.h @@ -31,8 +31,15 @@ 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, bool verbose); - + cmDepends(); + + /** set the name directory and extensions of the target file to scan */ + void SetTargetFile(const char* dir, const char* targetFile, + const char *markExt, const char *makeExt); + + /** should this be verbose in its output */ + void SetVerbose(bool verb) { m_Verbose = verb; } + /** Virtual destructor to cleanup subclasses properly. */ virtual ~cmDepends(); |