[cmake-commits] martink committed cpack.cxx 1.36 1.37

cmake-commits at cmake.org cmake-commits at cmake.org
Tue Oct 9 14:35:27 EDT 2007


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

Modified Files:
	cpack.cxx 
Log Message:
BUG: revert doc changes since VS7 cannot compile them, will implement them in a different manner


Index: cpack.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/CPack/cpack.cxx,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- cpack.cxx	9 Oct 2007 13:55:42 -0000	1.36
+++ cpack.cxx	9 Oct 2007 18:35:25 -0000	1.37
@@ -33,30 +33,30 @@
 //----------------------------------------------------------------------------
 static const cmDocumentationEntry cmDocumentationName[] =
 {
-  {"",
-   "  cpack - Packaging driver provided by CMake.", ""},
-  {"","",""}
+  {0,
+   "  cpack - Packaging driver provided by CMake.", 0},
+  {0,0,0}
 };
 
 //----------------------------------------------------------------------------
 static const cmDocumentationEntry cmDocumentationUsage[] =
 {
-  {"",
+  {0,
    "  cpack -G <generator> [options]",
-   ""},
-  {"","",""}
+   0},
+  {0,0,0}
 };
 
 //----------------------------------------------------------------------------
 static const cmDocumentationEntry cmDocumentationDescription[] =
 {
-  {"",
+  {0,
    "The \"cpack\" executable is the CMake packaging program.  "
    "CMake-generated build trees created for projects that use "
    "the INSTALL_* commands have packaging support.  "
-   "This program will generate the package.", ""},
+   "This program will generate the package.", 0},
   CMAKE_STANDARD_INTRODUCTION,
-  {"","",""}
+  {0,0,0}
 };
 
 //----------------------------------------------------------------------------
@@ -75,15 +75,15 @@
     {"--config <config file>", "Specify the config file.",
     "Specify the config file to use to create the package. By default "
       "CPackConfig.cmake in the current directory will be used." },
-    {"","",""}
+    {0,0,0}
 };
 
 //----------------------------------------------------------------------------
 static const cmDocumentationEntry cmDocumentationSeeAlso[] =
 {
-    {"", "cmake", ""},
-    {"", "ccmake", ""},
-    {"", "", ""}
+    {0, "cmake", 0},
+    {0, "ccmake", 0},
+    {0, 0, 0}
 };
 
 //----------------------------------------------------------------------------
@@ -464,7 +464,7 @@
       e.full = "";
       v.push_back(e);
       }
-    cmDocumentationEntry empty = {"","",""};
+    cmDocumentationEntry empty = {0,0,0};
     v.push_back(empty);
     doc.SetGeneratorsSection(&v[0]);
 



More information about the Cmake-commits mailing list