summaryrefslogtreecommitdiff
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-01-21 09:38:04 -0500
committerKen Martin <ken.martin@kitware.com>2005-01-21 09:38:04 -0500
commit0c225eb5b969e4f4d93d12dc337927abb25e6878 (patch)
treeada0f380576e084e626e913ed92ffbf7f2246828 /Source/cmCommands.cxx
parent819c910ee3485d64e829e0f410fdaaca479ae899 (diff)
downloadcmake-0c225eb5b969e4f4d93d12dc337927abb25e6878.tar.gz
ENH: added while command
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r--Source/cmCommands.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx
index 0898b0dbc4..c91021fe39 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
}