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/cmDependsJava.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/cmDependsJava.cxx')
-rw-r--r-- | Source/cmDependsJava.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmDependsJava.cxx b/Source/cmDependsJava.cxx index 0d121f9..bf1ff21 100644 --- a/Source/cmDependsJava.cxx +++ b/Source/cmDependsJava.cxx @@ -20,8 +20,9 @@ #include "cmSystemTools.h" //---------------------------------------------------------------------------- -cmDependsJava::cmDependsJava(const char* dir, const char* targetFile): - cmDepends(dir, targetFile), +cmDependsJava::cmDependsJava(const char* dir, const char* targetFile, + bool verbose): + cmDepends(dir, targetFile, verbose), m_SourceFile() { } @@ -29,7 +30,7 @@ cmDependsJava::cmDependsJava(const char* dir, const char* targetFile): //---------------------------------------------------------------------------- cmDependsJava::cmDependsJava(const char* dir, const char* targetFile, const char* sourceFile): - cmDepends(dir, targetFile), + cmDepends(dir, targetFile, false), m_SourceFile(sourceFile) { } |