diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-01-21 14:38:04 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-01-21 14:38:04 (GMT) |
commit | 0c225eb5b969e4f4d93d12dc337927abb25e6878 (patch) | |
tree | ada0f380576e084e626e913ed92ffbf7f2246828 /Source/cmCommands.cxx | |
parent | 819c910ee3485d64e829e0f410fdaaca479ae899 (diff) | |
download | CMake-0c225eb5b969e4f4d93d12dc337927abb25e6878.zip CMake-0c225eb5b969e4f4d93d12dc337927abb25e6878.tar.gz CMake-0c225eb5b969e4f4d93d12dc337927abb25e6878.tar.bz2 |
ENH: added while command
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 0898b0d..c91021f 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -79,6 +79,7 @@ #if defined(CMAKE_BUILD_WITH_CMAKE) #include "cmAbstractFilesCommand.cxx" #include "cmAuxSourceDirectoryCommand.cxx" +#include "cmEndWhileCommand.cxx" #include "cmExportLibraryDependencies.cxx" #include "cmEnableLanguageCommand.cxx" #include "cmFLTKWrapUICommand.cxx" @@ -104,6 +105,7 @@ #include "cmQTWrapUICommand.cxx" #include "cmUseMangledMesaCommand.cxx" #include "cmUtilitySourceCommand.cxx" +#include "cmWhileCommand.cxx" #include "cmWrapExcludeFilesCommand.cxx" // This one must be last because it includes windows.h and @@ -173,6 +175,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmAbstractFilesCommand); commands.push_back(new cmAuxSourceDirectoryCommand); commands.push_back(new cmEnableLanguageCommand); + commands.push_back(new cmEndWhileCommand); commands.push_back(new cmExportLibraryDependenciesCommand); commands.push_back(new cmFLTKWrapUICommand); commands.push_back(new cmGetCMakePropertyCommand); @@ -198,6 +201,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmQTWrapUICommand); commands.push_back(new cmUseMangledMesaCommand); commands.push_back(new cmUtilitySourceCommand); + commands.push_back(new cmWhileCommand); commands.push_back(new cmWrapExcludeFilesCommand); #endif } |