diff options
author | Brad King <brad.king@kitware.com> | 2003-08-06 19:12:43 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-08-06 19:12:43 (GMT) |
commit | d4854628ab2e630caffd3f3e3a4f31e8f64212a4 (patch) | |
tree | 86ea06fcec278c469d15f28501828a8276451cd3 /Source/CursesDialog/ccmake.cxx | |
parent | c981e035857f4005f4c9040eeb5878089244819f (diff) | |
download | CMake-d4854628ab2e630caffd3f3e3a4f31e8f64212a4.zip CMake-d4854628ab2e630caffd3f3e3a4f31e8f64212a4.tar.gz CMake-d4854628ab2e630caffd3f3e3a4f31e8f64212a4.tar.bz2 |
ENH: Added SEE ALSO support for generated unix manpage.
Diffstat (limited to 'Source/CursesDialog/ccmake.cxx')
-rw-r--r-- | Source/CursesDialog/ccmake.cxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/CursesDialog/ccmake.cxx b/Source/CursesDialog/ccmake.cxx index a21209c..9c19a10 100644 --- a/Source/CursesDialog/ccmake.cxx +++ b/Source/CursesDialog/ccmake.cxx @@ -62,6 +62,14 @@ static const cmDocumentationEntry cmDocumentationOptions[] = {0,0,0} }; +//---------------------------------------------------------------------------- +static const cmDocumentationEntry cmDocumentationSeeAlso[] = +{ + {0, "cmake", 0}, + {0, "ctest", 0}, + {0, 0, 0} +}; + cmCursesForm* cmCursesForm::CurrentForm=0; extern "C" @@ -108,6 +116,7 @@ int main(int argc, char** argv) doc.SetDescriptionSection(cmDocumentationDescription); doc.SetOptionsSection(cmDocumentationOptions); doc.SetCommandsSection(&commands[0]); + doc.SetSeeAlsoList(cmDocumentationSeeAlso); return doc.PrintRequestedDocumentation(std::cout)? 0:1; } |