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/cmDumpDocumentation.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/cmDumpDocumentation.cxx')
-rw-r--r-- | Source/cmDumpDocumentation.cxx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Source/cmDumpDocumentation.cxx b/Source/cmDumpDocumentation.cxx index dab2651..5b3bd9f 100644 --- a/Source/cmDumpDocumentation.cxx +++ b/Source/cmDumpDocumentation.cxx @@ -25,35 +25,35 @@ //---------------------------------------------------------------------------- static const cmDocumentationEntry cmDocumentationName[] = { - {0, - " DumpDocumentation - Dump documentation for CMake.", 0}, - {0,0,0} + {"", + " DumpDocumentation - Dump documentation for CMake.", ""}, + {"","",""} }; //---------------------------------------------------------------------------- static const cmDocumentationEntry cmDocumentationUsage[] = { - {0, - " DumpDocumentation [filename]", 0}, - {0,0,0} + {"", + " DumpDocumentation [filename]", ""}, + {"","",""} }; //---------------------------------------------------------------------------- static const cmDocumentationEntry cmDocumentationDescription[] = { - {0, + {"", "The \"DumpDocumentation\" executable is only available in the build " - "tree. It is used for testing, coverage, and documentation.", 0}, + "tree. It is used for testing, coverage, and documentation.", ""}, CMAKE_STANDARD_INTRODUCTION, - {0,0,0} + {"","",""} }; //---------------------------------------------------------------------------- static const cmDocumentationEntry cmDocumentationOptions[] = { {"--all-for-coverage", - "Dump all documentation to stdout. For testing.", 0}, - {0,0,0} + "Dump all documentation to stdout. For testing.", ""}, + {"","",""} }; |