diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-10-09 18:35:25 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-10-09 18:35:25 (GMT) |
commit | 35e13b11f3cce42944e367543b082e7774201e50 (patch) | |
tree | 20d811344c7e488cebe7596016601eb71cc12014 /Source/CPack/cpack.cxx | |
parent | 18ce24c7486fedc792276721515c9ddefc62ebee (diff) | |
download | CMake-35e13b11f3cce42944e367543b082e7774201e50.zip CMake-35e13b11f3cce42944e367543b082e7774201e50.tar.gz CMake-35e13b11f3cce42944e367543b082e7774201e50.tar.bz2 |
BUG: revert doc changes since VS7 cannot compile them, will implement them in a different manner
Diffstat (limited to 'Source/CPack/cpack.cxx')
-rw-r--r-- | Source/CPack/cpack.cxx | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/Source/CPack/cpack.cxx b/Source/CPack/cpack.cxx index 80cbbe7..ba9820f 100644 --- a/Source/CPack/cpack.cxx +++ b/Source/CPack/cpack.cxx @@ -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 @@ static const cmDocumentationEntry cmDocumentationOptions[] = {"--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 @@ int main (int argc, char *argv[]) e.full = ""; v.push_back(e); } - cmDocumentationEntry empty = {"","",""}; + cmDocumentationEntry empty = {0,0,0}; v.push_back(empty); doc.SetGeneratorsSection(&v[0]); |