1CMP0099
2-------
3
4.. versionadded:: 3.17
5
6Target link properties :prop_tgt:`INTERFACE_LINK_OPTIONS`,
7:prop_tgt:`INTERFACE_LINK_DIRECTORIES` and :prop_tgt:`INTERFACE_LINK_DEPENDS`
8are now transitive over private dependencies of static libraries.
9
10In CMake 3.16 and below the interface link properties attached to libraries
11are not propagated for private dependencies of static libraries.
12Only the libraries themselves are propagated to link the dependent binary.
13CMake 3.17 and later prefer to propagate all interface link properties.
14This policy provides compatibility for projects that have not been updated
15to expect the new behavior.
16
17The ``OLD`` behavior for this policy is to not propagate interface link
18properties. The ``NEW`` behavior of this policy is to propagate interface link
19properties.
20
21This policy was introduced in CMake version 3.17.  Use the
22:command:`cmake_policy` command to set it to ``OLD`` or ``NEW`` explicitly.
23Unlike many policies, CMake version |release| does *not* warn
24when this policy is not set and simply uses ``OLD`` behavior.
25
26.. include:: DEPRECATED.txt
27