[Cmake-commits] CMake branch, next, updated. v2.8.5-1438-gad06fe1

David Cole david.cole at kitware.com
Thu Aug 4 19:14:42 EDT 2011


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  ad06fe1175ae0e9f45290411fd5069c5dc96a819 (commit)
       via  edcdfeae9311ed5f5e9add23345b1ba9f0961982 (commit)
      from  0a11f45fc097b6e8850d0e485c47c1c7d84a7b19 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ad06fe1175ae0e9f45290411fd5069c5dc96a819
commit ad06fe1175ae0e9f45290411fd5069c5dc96a819
Merge: 0a11f45 edcdfea
Author:     David Cole <david.cole at kitware.com>
AuthorDate: Thu Aug 4 19:14:40 2011 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Aug 4 19:14:40 2011 -0400

    Merge topic 'fix-10941-correct-comments' into next
    
    edcdfea Documentation: Fix comments in the source code (#10941)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=edcdfeae9311ed5f5e9add23345b1ba9f0961982
commit edcdfeae9311ed5f5e9add23345b1ba9f0961982
Author:     David Cole <david.cole at kitware.com>
AuthorDate: Thu Aug 4 19:03:24 2011 -0400
Commit:     David Cole <david.cole at kitware.com>
CommitDate: Thu Aug 4 19:03:24 2011 -0400

    Documentation: Fix comments in the source code (#10941)
    
    Previously, the comments had all been copied and pasted
    and not fixed up... Now they are fixed up.

diff --git a/Source/cmBuildCommand.h b/Source/cmBuildCommand.h
index 703ff88..1d247d2 100644
--- a/Source/cmBuildCommand.h
+++ b/Source/cmBuildCommand.h
@@ -15,9 +15,9 @@
 #include "cmCommand.h"
 
 /** \class cmBuildCommand
- * \brief Build a CMAKE variable
+ * \brief build_command command
  *
- * cmBuildCommand sets a variable to a value with expansion.  
+ * cmBuildCommand implements the build_command CMake command
  */
 class cmBuildCommand : public cmCommand
 {
diff --git a/Source/cmBuildNameCommand.h b/Source/cmBuildNameCommand.h
index 35c0ae0..29a680f 100644
--- a/Source/cmBuildNameCommand.h
+++ b/Source/cmBuildNameCommand.h
@@ -15,9 +15,9 @@
 #include "cmCommand.h"
 
 /** \class cmBuildNameCommand
- * \brief BuildName a CMAKE variable
+ * \brief build_name command
  *
- * cmBuildNameCommand sets a variable to a value with expansion.
+ * cmBuildNameCommand implements the build_name CMake command
  */
 class cmBuildNameCommand : public cmCommand
 {
diff --git a/Source/cmCMakeMinimumRequired.h b/Source/cmCMakeMinimumRequired.h
index 9bf7ef8..1121386 100644
--- a/Source/cmCMakeMinimumRequired.h
+++ b/Source/cmCMakeMinimumRequired.h
@@ -15,9 +15,9 @@
 #include "cmCommand.h"
 
 /** \class cmCMakeMinimumRequired
- * \brief Build a CMAKE variable
+ * \brief cmake_minimum_required command
  *
- * cmCMakeMinimumRequired sets a variable to a value with expansion.  
+ * cmCMakeMinimumRequired implements the cmake_minimum_required CMake command
  */
 class cmCMakeMinimumRequired : public cmCommand
 {
diff --git a/Source/cmMarkAsAdvancedCommand.h b/Source/cmMarkAsAdvancedCommand.h
index 0a5eb9e..26e0a07 100644
--- a/Source/cmMarkAsAdvancedCommand.h
+++ b/Source/cmMarkAsAdvancedCommand.h
@@ -15,9 +15,9 @@
 #include "cmCommand.h"
 
 /** \class cmMarkAsAdvancedCommand
- * \brief MarkAsAdvanced a CMAKE variable
+ * \brief mark_as_advanced command
  *
- * cmMarkAsAdvancedCommand sets a variable to a value with expansion.  
+ * cmMarkAsAdvancedCommand implements the mark_as_advanced CMake command
  */
 class cmMarkAsAdvancedCommand : public cmCommand
 {
diff --git a/Source/cmRemoveCommand.h b/Source/cmRemoveCommand.h
index 87c416f..bae2ee1 100644
--- a/Source/cmRemoveCommand.h
+++ b/Source/cmRemoveCommand.h
@@ -15,9 +15,9 @@
 #include "cmCommand.h"
 
 /** \class cmRemoveCommand
- * \brief Set a CMAKE variable
+ * \brief remove command
  *
- * cmRemoveCommand sets a variable to a value with expansion.  
+ * cmRemoveCommand implements the remove CMake command
  */
 class cmRemoveCommand : public cmCommand
 {
diff --git a/Source/cmSeparateArgumentsCommand.h b/Source/cmSeparateArgumentsCommand.h
index 10b3c40..736f066 100644
--- a/Source/cmSeparateArgumentsCommand.h
+++ b/Source/cmSeparateArgumentsCommand.h
@@ -15,9 +15,9 @@
 #include "cmCommand.h"
 
 /** \class cmSeparateArgumentsCommand
- * \brief SeparateArguments a CMAKE variable
+ * \brief separate_arguments command
  *
- * cmSeparateArgumentsCommand sets a variable to a value with expansion.  
+ * cmSeparateArgumentsCommand implements the separate_arguments CMake command
  */
 class cmSeparateArgumentsCommand : public cmCommand
 {
diff --git a/Source/cmSiteNameCommand.h b/Source/cmSiteNameCommand.h
index 6357569..ac7f426 100644
--- a/Source/cmSiteNameCommand.h
+++ b/Source/cmSiteNameCommand.h
@@ -15,9 +15,9 @@
 #include "cmCommand.h"
 
 /** \class cmSiteNameCommand
- * \brief SiteName a CMAKE variable
+ * \brief site_name command
  *
- * cmSiteNameCommand sets a variable to a value with expansion.  
+ * cmSiteNameCommand implements the site_name CMake command
  */
 class cmSiteNameCommand : public cmCommand
 {

-----------------------------------------------------------------------

Summary of changes:
 Source/cmBuildCommand.h             |    4 ++--
 Source/cmBuildNameCommand.h         |    4 ++--
 Source/cmCMakeMinimumRequired.h     |    4 ++--
 Source/cmMarkAsAdvancedCommand.h    |    4 ++--
 Source/cmRemoveCommand.h            |    4 ++--
 Source/cmSeparateArgumentsCommand.h |    4 ++--
 Source/cmSiteNameCommand.h          |    4 ++--
 7 files changed, 14 insertions(+), 14 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list