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/cmDependsFortran.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/cmDependsFortran.cxx')
-rw-r--r-- | Source/cmDependsFortran.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmDependsFortran.cxx b/Source/cmDependsFortran.cxx index eaae7bb..f063f29 100644 --- a/Source/cmDependsFortran.cxx +++ b/Source/cmDependsFortran.cxx @@ -76,8 +76,9 @@ struct cmDependsFortranParser_s }; //---------------------------------------------------------------------------- -cmDependsFortran::cmDependsFortran(const char* dir, const char* targetFile): - cmDepends(dir, targetFile), +cmDependsFortran::cmDependsFortran(const char* dir, const char* targetFile, + bool verbose): + cmDepends(dir, targetFile, verbose), m_SourceFile(), m_IncludePath(0) { @@ -87,7 +88,7 @@ cmDependsFortran::cmDependsFortran(const char* dir, const char* targetFile): cmDependsFortran::cmDependsFortran(const char* dir, const char* targetFile, const char* sourceFile, std::vector<std::string> const& includes): - cmDepends(dir, targetFile), + cmDepends(dir, targetFile, false), m_SourceFile(sourceFile), m_IncludePath(&includes) { |