diff options
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index c1177d8..9a25b95 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -135,8 +135,10 @@ public: std::string ConvertToOutputForExisting(const char* p); /** Called from command-line hook to check dependencies. */ - virtual void CheckDependencies(cmMakefile* /* mf */, bool /* verbose */) {}; - + virtual void CheckDependencies(cmMakefile* /* mf */, + bool /* verbose */, + bool /* clear */) {}; + /** Called from command-line hook to scan dependencies. */ virtual bool ScanDependencies(std::vector<std::string> const& /* args */) {return true;}; |