diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-10-29 16:21:05 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-10-29 16:21:05 (GMT) |
commit | 1904b3f86e2ee3cebda9e2deebcd8f75b9de079d (patch) | |
tree | 69763d9e0550f678cb8bf692295adab013b8487c /Source/cmBootstrapCommands.cxx | |
parent | 02f79c72426ec24efb597ddfdb298336f650c801 (diff) | |
download | CMake-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.cxx | 2 |
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); |