[cmake-commits] martink committed cmGlobalKdevelopGenerator.cxx 1.28 1.29 cmGlobalXCodeGenerator.cxx 1.168 1.169

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Oct 22 13:28:52 EDT 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv2746/Source

Modified Files:
	cmGlobalKdevelopGenerator.cxx cmGlobalXCodeGenerator.cxx 
Log Message:
ENH: change to make the documentation class more generic, about halfway there, also provides secitons for Variables now


Index: cmGlobalXCodeGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmGlobalXCodeGenerator.cxx,v
retrieving revision 1.168
retrieving revision 1.169
diff -u -d -r1.168 -r1.169
--- cmGlobalXCodeGenerator.cxx	10 Oct 2007 15:06:14 -0000	1.168
+++ cmGlobalXCodeGenerator.cxx	22 Oct 2007 17:28:49 -0000	1.169
@@ -2726,9 +2726,9 @@
 void cmGlobalXCodeGenerator::GetDocumentation(cmDocumentationEntry& entry)
   const
 {
-  entry.name = this->GetName();
-  entry.brief = "Generate XCode project files.";
-  entry.full = "";
+  entry.Name = this->GetName();
+  entry.Brief = "Generate XCode project files.";
+  entry.Full = "";
 }
 
 //----------------------------------------------------------------------------

Index: cmGlobalKdevelopGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmGlobalKdevelopGenerator.cxx,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- cmGlobalKdevelopGenerator.cxx	31 Aug 2007 17:42:21 -0000	1.28
+++ cmGlobalKdevelopGenerator.cxx	22 Oct 2007 17:28:49 -0000	1.29
@@ -32,9 +32,9 @@
 void cmGlobalKdevelopGenerator
 ::GetDocumentation(cmDocumentationEntry& entry, const char*) const
 {
-  entry.name = this->GetName();
-  entry.brief = "Generates KDevelop 3 project files.";
-  entry.full =
+  entry.Name = this->GetName();
+  entry.Brief = "Generates KDevelop 3 project files.";
+  entry.Full =
     "Project files for KDevelop 3 will be created in the top directory "
     "and in every subdirectory which features a CMakeLists.txt file "
     "containing a PROJECT() call. "



More information about the Cmake-commits mailing list