[cmake-commits] hoffman committed cmBootstrapCommands.cxx 1.17 1.18 cmCommands.cxx 1.118 1.119

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Oct 29 12:21:07 EDT 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv32153/Source

Modified Files:
	cmBootstrapCommands.cxx cmCommands.cxx 
Log Message:
ENH: move list command to bootstrap commands


Index: cmCommands.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmCommands.cxx,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -d -r1.118 -r1.119
--- cmCommands.cxx	23 Aug 2007 20:14:18 -0000	1.118
+++ cmCommands.cxx	29 Oct 2007 16:21:05 -0000	1.119
@@ -35,7 +35,6 @@
 #include "cmInstallCommandArguments.cxx"
 #include "cmInstallProgramsCommand.cxx"
 #include "cmLinkLibrariesCommand.cxx"
-#include "cmListCommand.cxx"
 #include "cmLoadCacheCommand.cxx"
 #include "cmMathCommand.cxx"
 #include "cmOutputRequiredFilesCommand.cxx"
@@ -86,7 +85,6 @@
   commands.push_back(new cmInstallCommand);
   commands.push_back(new cmInstallProgramsCommand);
   commands.push_back(new cmLinkLibrariesCommand);
-  commands.push_back(new cmListCommand);
   commands.push_back(new cmLoadCacheCommand);
   commands.push_back(new cmLoadCommandCommand);
   commands.push_back(new cmMathCommand);

Index: cmBootstrapCommands.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmBootstrapCommands.cxx,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- cmBootstrapCommands.cxx	2 Jul 2007 19:43:21 -0000	1.17
+++ cmBootstrapCommands.cxx	29 Oct 2007 16:21:05 -0000	1.18
@@ -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 @@
   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);



More information about the Cmake-commits mailing list