summaryrefslogtreecommitdiffstats
path: root/Source/cmDependsJava.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-05-06 13:58:58 (GMT)
committerBrad King <brad.king@kitware.com>2005-05-06 13:58:58 (GMT)
commite8911705d6a790904f0c98f303de6ae370c60595 (patch)
tree3d612ebce8ed229dcb773797a8fc709005197df1 /Source/cmDependsJava.cxx
parent6f35a272a71a3eb642ddfa378dd6a1c4f1e9476a (diff)
downloadCMake-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.cxx7
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)
{
}