mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Add an entitlements file to MacApp
Allows our notarized app to send AppleEvents
This commit is contained in:
parent
fbb0f79992
commit
21af36d5a7
2 changed files with 17 additions and 2 deletions
|
@ -58,11 +58,18 @@ ADD_CUSTOM_COMMAND(TARGET fish_macapp POST_BUILD
|
||||||
VERBATIM
|
VERBATIM
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# The entitlements file.
|
||||||
|
SET(MACAPP_ENTITLEMENTS "${CMAKE_SOURCE_DIR}/osx/MacApp.entitlements")
|
||||||
|
|
||||||
# Target to sign the macapp.
|
# Target to sign the macapp.
|
||||||
# Note that a POST_BUILD step happens before resources are copied,
|
# Note that a POST_BUILD step happens before resources are copied,
|
||||||
# and therefore would be too early.
|
# and therefore would be too early.
|
||||||
ADD_CUSTOM_TARGET(signed_fish_macapp
|
ADD_CUSTOM_TARGET(signed_fish_macapp
|
||||||
DEPENDS fish_macapp
|
DEPENDS fish_macapp "${MACAPP_ENTITLEMENTS}"
|
||||||
COMMAND codesign --force --deep --options runtime --sign "${MAC_CODESIGN_ID}" $<TARGET_BUNDLE_DIR:fish_macapp>
|
COMMAND codesign --force --deep
|
||||||
|
--options runtime
|
||||||
|
--entitlements "${MACAPP_ENTITLEMENTS}"
|
||||||
|
--sign "${MAC_CODESIGN_ID}"
|
||||||
|
$<TARGET_BUNDLE_DIR:fish_macapp>
|
||||||
VERBATIM
|
VERBATIM
|
||||||
)
|
)
|
||||||
|
|
8
osx/MacApp.entitlements
Normal file
8
osx/MacApp.entitlements
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>com.apple.security.automation.apple-events</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
Loading…
Reference in a new issue