diff options
author | Brad King <brad.king@kitware.com> | 2005-05-06 09:58:58 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-05-06 09:58:58 -0400 |
commit | e8911705d6a790904f0c98f303de6ae370c60595 (patch) | |
tree | 3d612ebce8ed229dcb773797a8fc709005197df1 /Source/cmDependsJava.cxx | |
parent | 6f35a272a71a3eb642ddfa378dd6a1c4f1e9476a (diff) | |
download | cmake-e8911705d6a790904f0c98f303de6ae370c60595.tar.gz |
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 0d121f90d1..bf1ff21d98 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) { } |