ENH: change to make the documentation class more generic, about halfway there, also provides secitons for Variables now

This commit is contained in:
Ken Martin 2007-10-22 13:28:49 -04:00
parent 6cdf032505
commit cc6f53b61f
2 changed files with 6 additions and 6 deletions

View File

@ -32,9 +32,9 @@
void cmGlobalKdevelopGenerator void cmGlobalKdevelopGenerator
::GetDocumentation(cmDocumentationEntry& entry, const char*) const ::GetDocumentation(cmDocumentationEntry& entry, const char*) const
{ {
entry.name = this->GetName(); entry.Name = this->GetName();
entry.brief = "Generates KDevelop 3 project files."; entry.Brief = "Generates KDevelop 3 project files.";
entry.full = entry.Full =
"Project files for KDevelop 3 will be created in the top directory " "Project files for KDevelop 3 will be created in the top directory "
"and in every subdirectory which features a CMakeLists.txt file " "and in every subdirectory which features a CMakeLists.txt file "
"containing a PROJECT() call. " "containing a PROJECT() call. "

View File

@ -2726,9 +2726,9 @@ cmGlobalXCodeGenerator::WriteXCodePBXProj(std::ostream& fout,
void cmGlobalXCodeGenerator::GetDocumentation(cmDocumentationEntry& entry) void cmGlobalXCodeGenerator::GetDocumentation(cmDocumentationEntry& entry)
const const
{ {
entry.name = this->GetName(); entry.Name = this->GetName();
entry.brief = "Generate XCode project files."; entry.Brief = "Generate XCode project files.";
entry.full = ""; entry.Full = "";
} }
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------