diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-10-09 13:55:42 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-10-09 13:55:42 (GMT) |
commit | 18ce24c7486fedc792276721515c9ddefc62ebee (patch) | |
tree | 527cfa357957b02432cdabea88c918948ac6f37a /Source/CPack/cpack.cxx | |
parent | b02cbf5fadd70bf173882a1eca94e1d74d640248 (diff) | |
download | CMake-18ce24c7486fedc792276721515c9ddefc62ebee.zip CMake-18ce24c7486fedc792276721515c9ddefc62ebee.tar.gz CMake-18ce24c7486fedc792276721515c9ddefc62ebee.tar.bz2 |
ENH: make documentation entries actually store their data
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 ba9820f..80cbbe7 100644 --- a/Source/CPack/cpack.cxx +++ b/Source/CPack/cpack.cxx @@ -33,30 +33,30 @@ //---------------------------------------------------------------------------- static const cmDocumentationEntry cmDocumentationName[] = { - {0, - " cpack - Packaging driver provided by CMake.", 0}, - {0,0,0} + {"", + " cpack - Packaging driver provided by CMake.", ""}, + {"","",""} }; //---------------------------------------------------------------------------- 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.", 0}, + "This program will generate the package.", ""}, 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[] = { - {0, "cmake", 0}, - {0, "ccmake", 0}, - {0, 0, 0} + {"", "cmake", ""}, + {"", "ccmake", ""}, + {"", "", ""} }; //---------------------------------------------------------------------------- @@ -464,7 +464,7 @@ int main (int argc, char *argv[]) e.full = ""; v.push_back(e); } - cmDocumentationEntry empty = {0,0,0}; + cmDocumentationEntry empty = {"","",""}; v.push_back(empty); doc.SetGeneratorsSection(&v[0]); |