diff options
author | Brad King <brad.king@kitware.com> | 2018-07-03 14:52:05 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2018-07-03 14:52:24 (GMT) |
commit | f4d4d5df5bb408bdfc4c572d801d24eae7f2016e (patch) | |
tree | 7c25a12d0d72f285ef4c6bbb637327d66d558713 /Help/prop_tgt/LINK_DEPENDS.rst | |
parent | 5d933ad77b10da5f23c595a9ac33afd5ba77d064 (diff) | |
parent | 724bd7790e1a28826b5457c0b28edbfff9af4d15 (diff) | |
download | CMake-f4d4d5df5bb408bdfc4c572d801d24eae7f2016e.zip CMake-f4d4d5df5bb408bdfc4c572d801d24eae7f2016e.tar.gz CMake-f4d4d5df5bb408bdfc4c572d801d24eae7f2016e.tar.bz2 |
Merge topic 'LINK_DEPENDS'
724bd7790e LINK_DEPENDS: add support of 'generator expressions'
cc9f88af53 LINK_DEPENDS: add support for property INTERFACE_LINK_DEPENDS
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2175
Diffstat (limited to 'Help/prop_tgt/LINK_DEPENDS.rst')
-rw-r--r-- | Help/prop_tgt/LINK_DEPENDS.rst | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Help/prop_tgt/LINK_DEPENDS.rst b/Help/prop_tgt/LINK_DEPENDS.rst index 5576b85..3ab8658 100644 --- a/Help/prop_tgt/LINK_DEPENDS.rst +++ b/Help/prop_tgt/LINK_DEPENDS.rst @@ -7,6 +7,11 @@ Specifies a semicolon-separated list of full-paths to files on which the link rule for this target depends. The target binary will be linked if any of the named files is newer than it. -This property is ignored by non-Makefile generators. It is intended -to specify dependencies on "linker scripts" for custom Makefile link +This property is supported only by Makefile and Ninja generators. It is +intended to specify dependencies on "linker scripts" for custom Makefile link rules. + +Contents of ``LINK_DEPENDS`` may use "generator expressions" with +the syntax ``$<...>``. See the :manual:`cmake-generator-expressions(7)` +manual for available expressions. See the :manual:`cmake-buildsystem(7)` +manual for more on defining buildsystem properties. |