summaryrefslogtreecommitdiffstats
path: root/Source/cmGetCMakePropertyCommand.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-12-07 16:39:08 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-12-07 16:39:08 (GMT)
commit02b961f29cc4dd5b53bcbde69e11ac4b012c1010 (patch)
tree3c8373de016f0b0a0069b6246549534a332ea3e9 /Source/cmGetCMakePropertyCommand.h
parent19398fd2c8a0bd1de6963374755aa594d7adc11b (diff)
downloadCMake-02b961f29cc4dd5b53bcbde69e11ac4b012c1010.zip
CMake-02b961f29cc4dd5b53bcbde69e11ac4b012c1010.tar.gz
CMake-02b961f29cc4dd5b53bcbde69e11ac4b012c1010.tar.bz2
ENH: Make commands scriptable
Diffstat (limited to 'Source/cmGetCMakePropertyCommand.h')
-rw-r--r--Source/cmGetCMakePropertyCommand.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmGetCMakePropertyCommand.h b/Source/cmGetCMakePropertyCommand.h
index 4849107..e4b095f 100644
--- a/Source/cmGetCMakePropertyCommand.h
+++ b/Source/cmGetCMakePropertyCommand.h
@@ -34,6 +34,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 "GET_CMAKE_PROPERTY";}