summaryrefslogtreecommitdiffstats
path: root/Source/cmBootstrapCommands.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-10-29 16:21:05 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2007-10-29 16:21:05 (GMT)
commit1904b3f86e2ee3cebda9e2deebcd8f75b9de079d (patch)
tree69763d9e0550f678cb8bf692295adab013b8487c /Source/cmBootstrapCommands.cxx
parent02f79c72426ec24efb597ddfdb298336f650c801 (diff)
downloadCMake-1904b3f86e2ee3cebda9e2deebcd8f75b9de079d.zip
CMake-1904b3f86e2ee3cebda9e2deebcd8f75b9de079d.tar.gz
CMake-1904b3f86e2ee3cebda9e2deebcd8f75b9de079d.tar.bz2
ENH: move list command to bootstrap commands
Diffstat (limited to 'Source/cmBootstrapCommands.cxx')
-rw-r--r--Source/cmBootstrapCommands.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmBootstrapCommands.cxx b/Source/cmBootstrapCommands.cxx
index 4f3f8aa..143dad0 100644
--- a/Source/cmBootstrapCommands.cxx
+++ b/Source/cmBootstrapCommands.cxx
@@ -59,6 +59,7 @@
#include "cmInstallFilesCommand.cxx"
#include "cmInstallTargetsCommand.cxx"
#include "cmLinkDirectoriesCommand.cxx"
+#include "cmListCommand.cxx"
#include "cmMacroCommand.cxx"
#include "cmMakeDirectoryCommand.cxx"
#include "cmMarkAsAdvancedCommand.cxx"
@@ -114,6 +115,7 @@ void GetBootstrapCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmInstallFilesCommand);
commands.push_back(new cmInstallTargetsCommand);
commands.push_back(new cmLinkDirectoriesCommand);
+ commands.push_back(new cmListCommand);
commands.push_back(new cmMacroCommand);
commands.push_back(new cmMakeDirectoryCommand);
commands.push_back(new cmMarkAsAdvancedCommand);