diff options
author | Jonathan Earnshaw <j.earnshaw@gmail.com> | 2023-11-28 01:51:45 (GMT) |
---|---|---|
committer | Jonathan Earnshaw <j.earnshaw@gmail.com> | 2023-11-29 21:09:34 (GMT) |
commit | 2b4bb43ed385cf57d38e21bc1f5971e59c73ce6c (patch) | |
tree | fb8121b542f31292ca323c97b850ba489c9ba877 /Help | |
parent | 245e111269c4cdb903629e84e9ee148f6e0573f6 (diff) | |
download | CMake-2b4bb43ed385cf57d38e21bc1f5971e59c73ce6c.zip CMake-2b4bb43ed385cf57d38e21bc1f5971e59c73ce6c.tar.gz CMake-2b4bb43ed385cf57d38e21bc1f5971e59c73ce6c.tar.bz2 |
Xcode: Add support to embed XPC Services
Diffstat (limited to 'Help')
-rw-r--r-- | Help/prop_tgt/XCODE_EMBED_type.rst | 6 | ||||
-rw-r--r-- | Help/prop_tgt/XCODE_EMBED_type_PATH.rst | 3 | ||||
-rw-r--r-- | Help/release/dev/xcode-embed-xpc-services | 6 |
3 files changed, 15 insertions, 0 deletions
diff --git a/Help/prop_tgt/XCODE_EMBED_type.rst b/Help/prop_tgt/XCODE_EMBED_type.rst index e27d905..0f71ead 100644 --- a/Help/prop_tgt/XCODE_EMBED_type.rst +++ b/Help/prop_tgt/XCODE_EMBED_type.rst @@ -43,6 +43,12 @@ The supported values for ``<type>`` are: The specified items will be added to the ``Embed Resources`` build phase. They must be CMake target names or folder paths. +``XPC_SERVICES`` + .. versionadded:: 3.29 + + The specified items will be added to the ``Embed XPC Services`` build phase. + They must be CMake target names. + See also :prop_tgt:`XCODE_EMBED_<type>_PATH`, :prop_tgt:`XCODE_EMBED_<type>_REMOVE_HEADERS_ON_COPY` and :prop_tgt:`XCODE_EMBED_<type>_CODE_SIGN_ON_COPY`. diff --git a/Help/prop_tgt/XCODE_EMBED_type_PATH.rst b/Help/prop_tgt/XCODE_EMBED_type_PATH.rst index ef04d14..255aa68 100644 --- a/Help/prop_tgt/XCODE_EMBED_type_PATH.rst +++ b/Help/prop_tgt/XCODE_EMBED_type_PATH.rst @@ -25,3 +25,6 @@ The supported values for ``<type>`` are: ``RESOURCES`` .. versionadded:: 3.28 + +``XPC_SERVICES`` + .. versionadded:: 3.29 diff --git a/Help/release/dev/xcode-embed-xpc-services b/Help/release/dev/xcode-embed-xpc-services new file mode 100644 index 0000000..f758285 --- /dev/null +++ b/Help/release/dev/xcode-embed-xpc-services @@ -0,0 +1,6 @@ +xcode-embed-xpc-services +------------------------ + +* The :prop_tgt:`XCODE_EMBED_XPC_SERVICES <XCODE_EMBED_<type>>` target property + was added to tell the :generator:`Xcode` generator what targets to put in + the ``Embed XPC Resources`` build phase. |