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/ctest.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/ctest.cxx')
-rw-r--r-- | Source/ctest.cxx | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx index 5dedcc4..f085036 100644 --- a/Source/ctest.cxx +++ b/Source/ctest.cxx @@ -25,28 +25,28 @@ //---------------------------------------------------------------------------- static const cmDocumentationEntry cmDocumentationName[] = { - {0, - " ctest - Testing driver provided by CMake.", 0}, - {0,0,0} + {"", + " ctest - Testing driver provided by CMake.", ""}, + {"","",""} }; //---------------------------------------------------------------------------- static const cmDocumentationEntry cmDocumentationUsage[] = { - {0, - " ctest [options]", 0}, - {0,0,0} + {"", + " ctest [options]", ""}, + {"","",""} }; //---------------------------------------------------------------------------- static const cmDocumentationEntry cmDocumentationDescription[] = { - {0, + {"", "The \"ctest\" executable is the CMake test driver program. " "CMake-generated build trees created for projects that use " "the ENABLE_TESTING and ADD_TEST commands have testing support. " - "This program will run the tests and report results.", 0}, - {0,0,0} + "This program will run the tests and report results.", ""}, + {"","",""} }; //---------------------------------------------------------------------------- @@ -194,15 +194,15 @@ static const cmDocumentationEntry cmDocumentationOptions[] = "This option allows performing the same CTest action (such as test) " "multiple times and submit all stages to the same dashboard (Dart2 " "required). Each execution requires different index." }, - {0,0,0} + {"","",""} }; //---------------------------------------------------------------------------- static const cmDocumentationEntry cmDocumentationSeeAlso[] = { - {0, "cmake", 0}, - {0, "ccmake", 0}, - {0, 0, 0} + {"", "cmake", ""}, + {"", "ccmake", ""}, + {"", "", ""} }; // this is a test driver program for cmCTest. |