diff options
author | Brad King <brad.king@kitware.com> | 2020-01-17 14:41:02 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2020-01-17 14:41:10 (GMT) |
commit | a7fca06c464e7de3267a734aa26c043901b92f43 (patch) | |
tree | de47b7d8ac9f2bdccf44e46395e1e857f265c0c1 /Help/prop_tgt | |
parent | cd6f6b2a9f62564127a055cf8160404141fe2259 (diff) | |
parent | f0e67da0615bd746626cab8e4dff2ba60c7aa2fe (diff) | |
download | CMake-a7fca06c464e7de3267a734aa26c043901b92f43.zip CMake-a7fca06c464e7de3267a734aa26c043901b92f43.tar.gz CMake-a7fca06c464e7de3267a734aa26c043901b92f43.tar.bz2 |
Merge topic 'out-of-dir-link-list'
f0e67da061 target_link_libraries: Fix out-of-dir linking of a list of targets
acee629103 cmTargetLinkLibrariesCommand: Move HandleLibrary to helper struct
ba675f1ecc Tests: Enable CMP0022 in ExportImport out-of-dir linking case
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !4226
Diffstat (limited to 'Help/prop_tgt')
-rw-r--r-- | Help/prop_tgt/LINK_LIBRARIES_INDIRECTION.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Help/prop_tgt/LINK_LIBRARIES_INDIRECTION.txt b/Help/prop_tgt/LINK_LIBRARIES_INDIRECTION.txt index fab4418..476e4a6 100644 --- a/Help/prop_tgt/LINK_LIBRARIES_INDIRECTION.txt +++ b/Help/prop_tgt/LINK_LIBRARIES_INDIRECTION.txt @@ -1,9 +1,9 @@ .. note:: A call to :command:`target_link_libraries(<target> ...)` may update this property on ``<target>``. If ``<target>`` was not created in the same - directory as the call then :command:`target_link_libraries` will add a - suffix of the form ``::@(directory-id)`` to each entry, where the - ``::@`` is a separator and the ``(directory-id)`` is unspecified. + directory as the call then :command:`target_link_libraries` will wrap each + entry with the form ``::@(directory-id);...;::@``, where the ``::@`` is + literal and the ``(directory-id)`` is unspecified. This tells the generators that the named libraries must be looked up in the scope of the caller rather than in the scope in which the ``<target>`` was created. Valid directory ids are stripped on export |