summaryrefslogtreecommitdiff
path: root/Help
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2021-10-08 09:13:55 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2021-10-08 09:13:55 +0900
commitd59bf9db28c0f44bf4f61028963b4ef324d36c3b (patch)
tree9f3ede75a80772a7cc4fc18abd981a91077fe140 /Help
parenta20e63ca854355e86691c077f4b404eedc43533f (diff)
downloadcmake-d59bf9db28c0f44bf4f61028963b4ef324d36c3b.tar.gz
cmake-d59bf9db28c0f44bf4f61028963b4ef324d36c3b.tar.bz2
cmake-d59bf9db28c0f44bf4f61028963b4ef324d36c3b.zip
Imported Upstream version 3.14.4upstream/3.14.4
Diffstat (limited to 'Help')
-rw-r--r--Help/release/3.13.rst9
-rw-r--r--Help/release/3.14.rst10
2 files changed, 19 insertions, 0 deletions
diff --git a/Help/release/3.13.rst b/Help/release/3.13.rst
index 1c58550ff..a8dd0baf7 100644
--- a/Help/release/3.13.rst
+++ b/Help/release/3.13.rst
@@ -278,3 +278,12 @@ Changes made since CMake 3.13.0 include the following.
relying on the old behavior can be trivially fixed by specifying
the path to the source tree (even if just ``.``) explicitly and
continue to work with all versions of CMake.
+
+3.13.5
+------
+
+* In CMake 3.13.0 through 3.13.4, calling :command:`target_link_libraries`
+ to add ``PRIVATE`` dependencies to a static library created in another
+ directory (under policy :policy:`CMP0079` ``NEW`` behavior) would
+ incorrectly propagate usage requirements of those dependencies to
+ dependents that link the static library. This has been fixed.
diff --git a/Help/release/3.14.rst b/Help/release/3.14.rst
index c20830475..8a251bd18 100644
--- a/Help/release/3.14.rst
+++ b/Help/release/3.14.rst
@@ -402,3 +402,13 @@ Changes made since CMake 3.14.0 include the following.
* The :variable:`CMAKE_VS_PLATFORM_NAME_DEFAULT` variable was added
to help toolchain files work with the :generator:`Visual Studio 16 2019`
generator where the default platform now depends on the host platform.
+
+3.14.4
+------
+
+* In CMake 3.14.0 through 3.14.3, calling :command:`target_link_libraries`
+ to add ``PRIVATE`` dependencies to a static library created in another
+ directory (under policy :policy:`CMP0079` ``NEW`` behavior) would
+ incorrectly propagate usage requirements of those dependencies to
+ dependents that link the static library. This has been fixed.
+ The bug also existed in 3.13.0 through 3.13.4 and is fixed in 3.13.5.