diff options
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 4e1f38a..2865806 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -43,6 +43,10 @@ #include "cmUtilitySourceCommand.cxx" #include "cmIncludeRegularExpressionCommand.cxx" #include "cmSourceGroupCommand.cxx" +#include "cmIfCommand.cxx" +#include "cmElseCommand.cxx" +#include "cmEndIfCommand.cxx" +#include "cmAddDefinitionsCommand.cxx" void GetPredefinedCommands(std::list<cmCommand*>& commands) { @@ -83,6 +87,10 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmUtilitySourceCommand); commands.push_back(new cmIncludeRegularExpressionCommand); commands.push_back(new cmSourceGroupCommand); + commands.push_back(new cmIfCommand); + commands.push_back(new cmElseCommand); + commands.push_back(new cmEndIfCommand); + commands.push_back(new cmAddDefinitionsCommand); } |