summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Nagel <snbasti94@gmail.com>2017-07-23 14:22:00 +0200
committerBrad King <brad.king@kitware.com>2017-08-02 16:21:28 -0400
commitcc78ff72eb5e7ff3f86d05d6c61197c93d34f84d (patch)
tree75e2dae69623dcae63e0da25724f87b36ca67bf5
parentf3171a695bfda7c8bc9d8bf42d1e3088173896b0 (diff)
downloadcmake-cc78ff72eb5e7ff3f86d05d6c61197c93d34f84d.tar.gz
Help: Fix example in cmake-buildsystem(7) manual
In the example code `serialization` is a PRIVATE dependency of `archiveExtras` and not of `archive`. Fix the corresponding prose.
-rw-r--r--Help/manual/cmake-buildsystem.7.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/manual/cmake-buildsystem.7.rst b/Help/manual/cmake-buildsystem.7.rst
index 95f5b87357..debaf23100 100644
--- a/Help/manual/cmake-buildsystem.7.rst
+++ b/Help/manual/cmake-buildsystem.7.rst
@@ -266,7 +266,7 @@ The :command:`target_link_libraries` command has ``PRIVATE``,
Because ``archive`` is a ``PUBLIC`` dependency of ``archiveExtras``, the
usage requirements of it are propagated to ``consumer`` too. Because
-``serialization`` is a ``PRIVATE`` dependency of ``archive``, the usage
+``serialization`` is a ``PRIVATE`` dependency of ``archiveExtras``, the usage
requirements of it are not propagated to ``consumer``.
Generally, a dependency should be specified in a use of