diff options
author | Eric NOULARD <eric.noulard@gmail.com> | 2011-11-13 22:44:53 +0100 |
---|---|---|
committer | Eric NOULARD <eric.noulard@gmail.com> | 2012-01-22 11:42:49 +0100 |
commit | c6a016944211b737c45385423fc7df10462e34ab (patch) | |
tree | 3971d56823c84108bbb663360034bba8fd28225d /Source/cmDocumentation.h | |
parent | a668c9f059cebad61138511f7e91fbe49a414666 (diff) | |
download | cmake-c6a016944211b737c45385423fc7df10462e34ab.tar.gz |
CPack begin the implementation of --help-command* and --help-variables*
This modifications set tries to keep the unified doc for cmake/ctest/cpack
while introducing tool specific documentation separated.
Some documentation sections for CMake do not fit well to CPack.
Diffstat (limited to 'Source/cmDocumentation.h')
-rw-r--r-- | Source/cmDocumentation.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Source/cmDocumentation.h b/Source/cmDocumentation.h index 34b83b1a4d..a7a7a1f37e 100644 --- a/Source/cmDocumentation.h +++ b/Source/cmDocumentation.h @@ -119,6 +119,18 @@ public: static Form GetFormFromFilename(const std::string& filename); + /** Add common (to all tools) documentation section(s) */ + void addCommonStandardDocSections(); + + /** Add the CMake standard documentation section(s) */ + void addCMakeStandardDocSections(); + + /** Add the CTest standard documentation section(s) */ + void addCTestStandardDocSections(); + + /** Add the CPack standard documentation section(s) */ + void addCPackStandardDocSections(); + private: void SetForm(Form f); void SetDocName(const char* docname); |