[cmake-commits] king committed cmBootstrapCommands.cxx 1.8 1.9 cmCommands.cxx 1.108 1.109

cmake-commits at cmake.org cmake-commits at cmake.org
Sat Mar 3 12:16:37 EST 2007


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

Modified Files:
	cmBootstrapCommands.cxx cmCommands.cxx 
Log Message:
BUG: cmCreateTestSourceList command is needed at boostrap time because KWSys now uses test drivers.


Index: cmCommands.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmCommands.cxx,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -d -r1.108 -r1.109
--- cmCommands.cxx	12 Dec 2006 19:39:17 -0000	1.108
+++ cmCommands.cxx	3 Mar 2007 17:16:35 -0000	1.109
@@ -19,7 +19,6 @@
 #include "cmAddSubDirectoryCommand.cxx"
 #include "cmAuxSourceDirectoryCommand.cxx"
 #include "cmBuildNameCommand.cxx"
-#include "cmCreateTestSourceList.cxx"
 #include "cmDefinePropertyCommand.cxx"
 #include "cmElseIfCommand.cxx"
 #include "cmEnableLanguageCommand.cxx"
@@ -72,7 +71,6 @@
   commands.push_back(new cmAddSubDirectoryCommand);
   commands.push_back(new cmAuxSourceDirectoryCommand);
   commands.push_back(new cmBuildNameCommand);
-  commands.push_back(new cmCreateTestSourceList);
   commands.push_back(new cmDefinePropertyCommand);
   commands.push_back(new cmElseIfCommand);
   commands.push_back(new cmEnableLanguageCommand);

Index: cmBootstrapCommands.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmBootstrapCommands.cxx,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- cmBootstrapCommands.cxx	19 Apr 2006 14:50:15 -0000	1.8
+++ cmBootstrapCommands.cxx	3 Mar 2007 17:16:35 -0000	1.9
@@ -29,6 +29,7 @@
 #include "cmBuildCommand.cxx"
 #include "cmCMakeMinimumRequired.cxx"
 #include "cmConfigureFileCommand.cxx"
+#include "cmCreateTestSourceList.cxx"
 #include "cmElseCommand.cxx"
 #include "cmEnableTestingCommand.cxx"
 #include "cmEndForEachCommand.cxx"
@@ -79,6 +80,7 @@
   commands.push_back(new cmBuildCommand);
   commands.push_back(new cmCMakeMinimumRequired);
   commands.push_back(new cmConfigureFileCommand);
+  commands.push_back(new cmCreateTestSourceList);
   commands.push_back(new cmElseCommand);
   commands.push_back(new cmEnableTestingCommand);  
   commands.push_back(new cmEndForEachCommand);



More information about the Cmake-commits mailing list