summaryrefslogtreecommitdiff
path: root/Source/cmDocumentation.h
diff options
context:
space:
mode:
authorZach Mullen <zach.mullen@kitware.com>2009-11-24 11:46:06 -0500
committerZach Mullen <zach.mullen@kitware.com>2009-11-24 11:46:06 -0500
commit0ae07800557bef97c43ddd64f144b258b8fdd5dc (patch)
tree11e25227b2346357e92d9eb0f077d7c05ee313bc /Source/cmDocumentation.h
parentbb187903979d20c8b8a5ed07276c6af122bad781 (diff)
downloadcmake-0ae07800557bef97c43ddd64f144b258b8fdd5dc.tar.gz
BUG 9961: ctest --help should not display a Generators section
Diffstat (limited to 'Source/cmDocumentation.h')
-rw-r--r--Source/cmDocumentation.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmDocumentation.h b/Source/cmDocumentation.h
index 3a4a506350..34b83b1a4d 100644
--- a/Source/cmDocumentation.h
+++ b/Source/cmDocumentation.h
@@ -57,6 +57,8 @@ public:
/** Print help of the given type. */
bool PrintDocumentation(Type ht, std::ostream& os, const char* docname=0);
+
+ void SetShowGenerators(bool showGen) { this->ShowGenerators = showGen; }
/** Set the program name for standard document generation. */
void SetName(const char* name);
@@ -159,6 +161,8 @@ private:
const char* GetDefaultDocName(Type ht) const;
bool IsOption(const char* arg) const;
+ bool ShowGenerators;
+
std::string NameString;
std::string DocName;
std::map<std::string,cmDocumentationSection*> AllSections;