diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2023-06-16 15:54:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-06-23 16:07:18 (GMT) |
commit | d605f728f76b84e1e60000b9cb8704e5c1396763 (patch) | |
tree | d960480f98093f89f4fe13937997d2afa3430555 /Help | |
parent | acc7e6a1445e584e21db57d167db3f0d7cae6257 (diff) | |
download | CMake-d605f728f76b84e1e60000b9cb8704e5c1396763.zip CMake-d605f728f76b84e1e60000b9cb8704e5c1396763.tar.gz CMake-d605f728f76b84e1e60000b9cb8704e5c1396763.tar.bz2 |
macOS: Allow IMPORTED_LOCATION to be a framework folder
Issue: #24946
Diffstat (limited to 'Help')
-rw-r--r-- | Help/prop_tgt/IMPORTED_LOCATION.rst | 5 | ||||
-rw-r--r-- | Help/release/dev/imported-target-framework-path.rst | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/Help/prop_tgt/IMPORTED_LOCATION.rst b/Help/prop_tgt/IMPORTED_LOCATION.rst index a7207d8..50c3658 100644 --- a/Help/prop_tgt/IMPORTED_LOCATION.rst +++ b/Help/prop_tgt/IMPORTED_LOCATION.rst @@ -15,6 +15,11 @@ is the location of the ``.dll`` part of the library. For ``UNKNOWN`` libraries this is the location of the file to be linked. Ignored for non-imported targets. +.. versionadded:: 3.28 + + For frameworks on macOS, this may be the location of the framework folder + itself. + The ``IMPORTED_LOCATION`` target property may be overridden for a given configuration ``<CONFIG>`` by the configuration-specific :prop_tgt:`IMPORTED_LOCATION_<CONFIG>` target property. Furthermore, diff --git a/Help/release/dev/imported-target-framework-path.rst b/Help/release/dev/imported-target-framework-path.rst new file mode 100644 index 0000000..68c3431 --- /dev/null +++ b/Help/release/dev/imported-target-framework-path.rst @@ -0,0 +1,5 @@ +imported-target-framework-path +------------------------------ + +* The :prop_tgt:`IMPORTED_LOCATION` property of a macOS framework may now be + the location of the framework folder itself. |