diff options
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 2865806..801a646 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); } |