diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-05-12 14:49:56 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-05-12 14:49:56 (GMT) |
commit | caf17c123b79bd079408258a1ba13bdcd2105e59 (patch) | |
tree | e0350c8152c69f400991099925887169bf13a455 /Source/cmLocalGenerator.h | |
parent | e1c9730a0107c0c4af946afa25525c9de9dcd33b (diff) | |
download | CMake-caf17c123b79bd079408258a1ba13bdcd2105e59.zip CMake-caf17c123b79bd079408258a1ba13bdcd2105e59.tar.gz CMake-caf17c123b79bd079408258a1ba13bdcd2105e59.tar.bz2 |
ENH: added new generator
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 989cc69..859a799 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -134,6 +134,12 @@ public: ///! for existing files convert to output path and short path if spaces std::string ConvertToOutputForExisting(const char* p); + /** Called from command-line hook to check dependencies. */ + virtual void CheckDependencies(cmMakefile* /* mf */, bool /* verbose */) {}; + + /** Called from command-line hook to scan dependencies. */ + virtual bool ScanDependencies(std::vector<std::string> const& /* args */) {return true;}; + protected: /** Construct a script from the given list of command lines. */ std::string ConstructScript(const cmCustomCommandLines& commandLines, |