diff options
Diffstat (limited to 'Source/cmWriteFileCommand.h')
-rw-r--r-- | Source/cmWriteFileCommand.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmWriteFileCommand.h b/Source/cmWriteFileCommand.h index 0c52aed..ef2561d 100644 --- a/Source/cmWriteFileCommand.h +++ b/Source/cmWriteFileCommand.h @@ -41,6 +41,11 @@ public: virtual bool InitialPass(std::vector<std::string> const& args); /** + * 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 "WRITE_FILE";} |