diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-09-22 15:23:51 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-09-22 15:23:51 (GMT) |
commit | 5e46232ad8f6667e1e9a62b11ce4524097ad085a (patch) | |
tree | 9289ba7495116114ff7ea201c2bc18a8bb43ab05 /Source/cmCommands.cxx | |
parent | c27e9fd656fce1b0ea2bd53ddf85c711c14813d9 (diff) | |
download | CMake-5e46232ad8f6667e1e9a62b11ce4524097ad085a.zip CMake-5e46232ad8f6667e1e9a62b11ce4524097ad085a.tar.gz CMake-5e46232ad8f6667e1e9a62b11ce4524097ad085a.tar.bz2 |
ENH: added elseif
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 26b098a..6bfabd6 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -20,6 +20,7 @@ #include "cmAuxSourceDirectoryCommand.cxx" #include "cmBuildNameCommand.cxx" #include "cmCreateTestSourceList.cxx" +#include "cmElseIfCommand.cxx" #include "cmEnableLanguageCommand.cxx" #include "cmEndWhileCommand.cxx" #include "cmExecuteProcessCommand.cxx" @@ -73,6 +74,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands.push_back(new cmAuxSourceDirectoryCommand); commands.push_back(new cmBuildNameCommand); commands.push_back(new cmCreateTestSourceList); + commands.push_back(new cmElseIfCommand); commands.push_back(new cmEnableLanguageCommand); commands.push_back(new cmEndWhileCommand); commands.push_back(new cmExecuteProcessCommand); |