diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-05-09 12:53:38 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-05-09 12:53:38 (GMT) |
commit | 5fb21a0640a91eb71d4c61db5708c49b6897d8fe (patch) | |
tree | 5c4986d9e18fd2914e624763cfbe96fa836ee873 /Source/cmLocalUnixMakefileGenerator3.h | |
parent | 20f668c6fe9b33f0eefc2cff44c6e3a6f9906b91 (diff) | |
download | CMake-5fb21a0640a91eb71d4c61db5708c49b6897d8fe.zip CMake-5fb21a0640a91eb71d4c61db5708c49b6897d8fe.tar.gz CMake-5fb21a0640a91eb71d4c61db5708c49b6897d8fe.tar.bz2 |
ENH: some more cleanup
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index 163323a..ac4c04b 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -119,7 +119,7 @@ public: static bool ScanDependencies(std::vector<std::string> const& args); /** Called from command-line hook to check dependencies. */ - static void CheckDependencies(cmMakefile* mf); + static void CheckDependencies(cmMakefile* mf, bool verbose); /** write some extra rules suahc as make test etc */ void WriteSpecialTargetsTop(std::ostream& makefileStream); @@ -200,7 +200,8 @@ protected: // return the appropriate depends checker static cmDepends* GetDependsChecker(const std::string& lang, const char* dir, - const char* objFile); + const char* objFile, + bool verbose); void GenerateCustomRuleFile(const cmCustomCommand& cc); |