diff options
author | Sebastian Nagel <snbasti94@gmail.com> | 2017-07-23 12:22:00 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-08-02 20:21:28 (GMT) |
commit | cc78ff72eb5e7ff3f86d05d6c61197c93d34f84d (patch) | |
tree | 75e2dae69623dcae63e0da25724f87b36ca67bf5 /Help/manual/cmake-buildsystem.7.rst | |
parent | f3171a695bfda7c8bc9d8bf42d1e3088173896b0 (diff) | |
download | CMake-cc78ff72eb5e7ff3f86d05d6c61197c93d34f84d.zip CMake-cc78ff72eb5e7ff3f86d05d6c61197c93d34f84d.tar.gz CMake-cc78ff72eb5e7ff3f86d05d6c61197c93d34f84d.tar.bz2 |
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.
Diffstat (limited to 'Help/manual/cmake-buildsystem.7.rst')
-rw-r--r-- | Help/manual/cmake-buildsystem.7.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/manual/cmake-buildsystem.7.rst b/Help/manual/cmake-buildsystem.7.rst index 95f5b87..debaf23 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 |