From bfe234da939d57be7b6d54835a57f0f6fdf413d3 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Thu, 19 Feb 2004 09:35:30 -0500 Subject: [PATCH] ENH: Macro should be scriptable --- Source/cmMacroCommand.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/cmMacroCommand.h b/Source/cmMacroCommand.h index aa9dc0a0f..c1c0df5e4 100644 --- a/Source/cmMacroCommand.h +++ b/Source/cmMacroCommand.h @@ -67,6 +67,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. */