summaryrefslogtreecommitdiffstats
path: root/Help/release/dev/find_package-global-imported.rst
diff options
context:
space:
mode:
authorJohn Parent <john.parent@kitware.com>2022-03-10 17:43:50 (GMT)
committerJohn Parent <john.parent@kitware.com>2022-03-10 17:44:36 (GMT)
commit2f1ffa003c07d5fe7ca10c4ee06e81dd55f5e415 (patch)
treeeb92cb82fda9a3bcd1ad58cf6b1d2654a2527c35 /Help/release/dev/find_package-global-imported.rst
parent3a37fda6a2b4f28fdd7efe58f4a0b7570404a7d4 (diff)
downloadCMake-2f1ffa003c07d5fe7ca10c4ee06e81dd55f5e415.zip
CMake-2f1ffa003c07d5fe7ca10c4ee06e81dd55f5e415.tar.gz
CMake-2f1ffa003c07d5fe7ca10c4ee06e81dd55f5e415.tar.bz2
find_package: Add support for default GLOBAL imported targets
Allow find package to promote scope of imported targets by specifying an argument to `find_package` or by specifying a CMake variable. * Add support for CMAKE_GLOBAL_IMPORT_SCOPE variable * Add support for GLOBAL argument to find_package Additionally add testing for above features.
Diffstat (limited to 'Help/release/dev/find_package-global-imported.rst')
-rw-r--r--Help/release/dev/find_package-global-imported.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/Help/release/dev/find_package-global-imported.rst b/Help/release/dev/find_package-global-imported.rst
new file mode 100644
index 0000000..b32d18d
--- /dev/null
+++ b/Help/release/dev/find_package-global-imported.rst
@@ -0,0 +1,9 @@
+find_package-global-imported
+----------------------------
+
+* The :command:`find_package` command gained a `GLOBAL` option that
+ allows for the promotion of imported targets to global scope fur the
+ duration of the :command:`find_package` call.
+
+* Adds support for :variable:`CMAKE_FIND_PACKAGE_TARGETS_GLOBAL` to
+ toggle behavior of the :command:`find_package` command's new GLOBAL option