diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-04-19 21:39:03 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-04-19 21:39:03 (GMT) |
commit | b5f62159ca57dfa074b3985e17df2b2a29ab6d0f (patch) | |
tree | afc12bc65ac93fbba86f360ca8d73eef2fba4867 /Source/cmCommands.cxx | |
parent | 24bce99cbff13cb337c543dce55f056351caa2fc (diff) | |
download | CMake-b5f62159ca57dfa074b3985e17df2b2a29ab6d0f.zip CMake-b5f62159ca57dfa074b3985e17df2b2a29ab6d0f.tar.gz CMake-b5f62159ca57dfa074b3985e17df2b2a29ab6d0f.tar.bz2 |
added if else endif add definition
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); } |