diff options
Diffstat (limited to 'Source/cmFileCommand.h')
-rw-r--r-- | Source/cmFileCommand.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmFileCommand.h b/Source/cmFileCommand.h index 5671dc4..60e25e8 100644 --- a/Source/cmFileCommand.h +++ b/Source/cmFileCommand.h @@ -47,6 +47,11 @@ public: virtual bool IsInherited() {return true;} /** + * This determines if the command is invoked when in script mode. + */ + virtual bool IsScriptable() { return true; } + + /** * The name of the command as specified in CMakeList.txt. */ virtual const char* GetName() { return "FILE";} @@ -100,6 +105,7 @@ protected: bool HandleReadCommand(std::vector<std::string> const& args); bool HandleGlobCommand(std::vector<std::string> const& args, bool recurse); bool HandleMakeDirectoryCommand(std::vector<std::string> const& args); + bool HandleInstallCommand(std::vector<std::string> const& args); }; |