summaryrefslogtreecommitdiff
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-04-23 16:34:12 -0400
committerKen Martin <ken.martin@kitware.com>2001-04-23 16:34:12 -0400
commit619dd8c4791850f3fe4d564d32f8285cb027b4fc (patch)
treed64854c0b67103f4f5abeda0a5f5929b88423dcb /Source/cmCommands.cxx
parentb49204ab0db3e6eae2f346f0f2a3a67517dae80c (diff)
downloadcmake-619dd8c4791850f3fe4d564d32f8285cb027b4fc.tar.gz
added option command
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r--Source/cmCommands.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx
index 28658062c0..801a6466c3 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -47,6 +47,7 @@
#include "cmElseCommand.cxx"
#include "cmEndIfCommand.cxx"
#include "cmAddDefinitionsCommand.cxx"
+#include "cmOptionCommand.cxx"
void GetPredefinedCommands(std::list<cmCommand*>& commands)
{
@@ -91,6 +92,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmElseCommand);
commands.push_back(new cmEndIfCommand);
commands.push_back(new cmAddDefinitionsCommand);
+ commands.push_back(new cmOptionCommand);
}