diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2023-07-11 12:33:37 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2023-07-28 18:41:45 (GMT) |
commit | 9bf8f7de0650a3a904b4947bd5527206e2564724 (patch) | |
tree | 77cef1b9761482c16a49854ba0e4711f7c3ba407 /Help/command/find_library.rst | |
parent | 07ac0c0ae0bcd7231b6c834303531c313af28090 (diff) | |
download | CMake-9bf8f7de0650a3a904b4947bd5527206e2564724.zip CMake-9bf8f7de0650a3a904b4947bd5527206e2564724.tar.gz CMake-9bf8f7de0650a3a904b4947bd5527206e2564724.tar.bz2 |
find_library(): Add support for .xcframework
Issue: #21752
Diffstat (limited to 'Help/command/find_library.rst')
-rw-r--r-- | Help/command/find_library.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Help/command/find_library.rst b/Help/command/find_library.rst index 99e36a4..fb2c2f1 100644 --- a/Help/command/find_library.rst +++ b/Help/command/find_library.rst @@ -60,6 +60,10 @@ path to the framework ``<fullPath>/A.framework``. When a full path to a framework is used as a library, CMake will use a ``-framework A``, and a ``-F<fullPath>`` to link the framework to the target. +.. versionadded:: 3.28 + + The library found can now be a ``.xcframework`` folder. + If the :variable:`CMAKE_FIND_LIBRARY_CUSTOM_LIB_SUFFIX` variable is set all search paths will be tested as normal, with the suffix appended, and with all matches of ``lib/`` replaced with |