[Cmake-commits] CMake branch, next, updated. v2.8.11.2-4252-g3405610

Brad King brad.king at kitware.com
Thu Sep 19 14:13:36 EDT 2013


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  34056101e23c20d1bbe8ba870b46c91dd635abe4 (commit)
       via  1bdac7d5a65fe97e01346df105f15a98b76daf30 (commit)
      from  3964de622294b9ce08574aa19131c8f4ab31125b (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=34056101e23c20d1bbe8ba870b46c91dd635abe4
commit 34056101e23c20d1bbe8ba870b46c91dd635abe4
Merge: 3964de6 1bdac7d
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Thu Sep 19 14:13:35 2013 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Sep 19 14:13:35 2013 -0400

    Merge topic 'doc-add_dependencies-direction' into next
    
    1bdac7d add_dependencies: Clarify direction of dependency in docs (#14424)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=1bdac7d5a65fe97e01346df105f15a98b76daf30
commit 1bdac7d5a65fe97e01346df105f15a98b76daf30
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Thu Sep 19 14:06:14 2013 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Thu Sep 19 14:10:23 2013 -0400

    add_dependencies: Clarify direction of dependency in docs (#14424)
    
    State explicitly that the dependencies will build before the target.
    Drop wording that may imply the opposite.
    
    Suggested-by: Rob Stewart <robert.stewart at sig.com>

diff --git a/Source/cmAddDependenciesCommand.h b/Source/cmAddDependenciesCommand.h
index ed80067..148fd99 100644
--- a/Source/cmAddDependenciesCommand.h
+++ b/Source/cmAddDependenciesCommand.h
@@ -56,14 +56,14 @@ public:
   virtual const char* GetFullDocumentation() const
     {
     return
-      "  add_dependencies(target-name depend-target1\n"
-      "                   depend-target2 ...)\n"
-      "Make a top-level target depend on other top-level targets.  A "
-      "top-level target is one created by ADD_EXECUTABLE, ADD_LIBRARY, "
-      "or ADD_CUSTOM_TARGET.  Adding dependencies with this command "
-      "can be used to make sure one target is built before another target.  "
+      "  add_dependencies(<target> [<target-dependency>]...)\n"
+      "Make a top-level <target> depend on other top-level targets to "
+      "ensure that they build before <target> does.  "
+      "A top-level target is one created by ADD_EXECUTABLE, ADD_LIBRARY, "
+      "or ADD_CUSTOM_TARGET.  "
       "Dependencies added to an IMPORTED target are followed transitively "
       "in its place since the target itself does not build.  "
+      "\n"
       "See the DEPENDS option of ADD_CUSTOM_TARGET "
       "and ADD_CUSTOM_COMMAND for adding file-level dependencies in custom "
       "rules.  See the OBJECT_DEPENDS option in "

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

Summary of changes:
 Source/cmAddDependenciesCommand.h |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list