[cmake-commits] hoffman committed cmBootstrapCommands.cxx 1.25 1.26 cmCommands.cxx 1.122 1.123 cmInstallProgramsCommand.cxx 1.21 1.22

cmake-commits at cmake.org cmake-commits at cmake.org
Sat Feb 16 13:05:05 EST 2008


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

Modified Files:
	cmBootstrapCommands.cxx cmCommands.cxx 
	cmInstallProgramsCommand.cxx 
Log Message:
ENH: support for cpack and install of cmake-gui as mac app bundle 


Index: cmCommands.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmCommands.cxx,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -d -r1.122 -r1.123
--- cmCommands.cxx	14 Feb 2008 16:58:32 -0000	1.122
+++ cmCommands.cxx	16 Feb 2008 18:05:03 -0000	1.123
@@ -26,8 +26,6 @@
 #include "cmFLTKWrapUICommand.cxx"
 #include "cmGetTestPropertyCommand.cxx"
 #include "cmIncludeExternalMSProjectCommand.cxx"
-#include "cmInstallCommand.cxx"
-#include "cmInstallCommandArguments.cxx"
 #include "cmInstallProgramsCommand.cxx"
 #include "cmLinkLibrariesCommand.cxx"
 #include "cmLoadCacheCommand.cxx"
@@ -70,7 +68,6 @@
   commands.push_back(new cmFLTKWrapUICommand);
   commands.push_back(new cmGetTestPropertyCommand);
   commands.push_back(new cmIncludeExternalMSProjectCommand);
-  commands.push_back(new cmInstallCommand);
   commands.push_back(new cmInstallProgramsCommand);
   commands.push_back(new cmLinkLibrariesCommand);
   commands.push_back(new cmLoadCacheCommand);

Index: cmInstallProgramsCommand.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmInstallProgramsCommand.cxx,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- cmInstallProgramsCommand.cxx	28 Jan 2008 13:38:35 -0000	1.21
+++ cmInstallProgramsCommand.cxx	16 Feb 2008 18:05:03 -0000	1.22
@@ -15,7 +15,7 @@
 
 =========================================================================*/
 #include "cmInstallProgramsCommand.h"
-
+#include "cmInstallFilesGenerator.h"
 // cmExecutableCommand
 bool cmInstallProgramsCommand
 ::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)

Index: cmBootstrapCommands.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmBootstrapCommands.cxx,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- cmBootstrapCommands.cxx	14 Feb 2008 16:58:32 -0000	1.25
+++ cmBootstrapCommands.cxx	16 Feb 2008 18:05:03 -0000	1.26
@@ -66,6 +66,8 @@
 #include "cmIncludeDirectoryCommand.cxx"
 #include "cmIncludeRegularExpressionCommand.cxx"
 #include "cmInstallFilesCommand.cxx"
+#include "cmInstallCommandArguments.cxx"
+#include "cmInstallCommand.cxx"
 #include "cmInstallTargetsCommand.cxx"
 #include "cmLinkDirectoriesCommand.cxx"
 #include "cmListCommand.cxx"
@@ -132,6 +134,7 @@
   commands.push_back(new cmIncludeCommand);
   commands.push_back(new cmIncludeDirectoryCommand);
   commands.push_back(new cmIncludeRegularExpressionCommand);
+  commands.push_back(new cmInstallCommand);
   commands.push_back(new cmInstallFilesCommand);
   commands.push_back(new cmInstallTargetsCommand);
   commands.push_back(new cmLinkDirectoriesCommand);



More information about the Cmake-commits mailing list