mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-05 22:35:06 +01:00
Enable JIT entitlement
This commit is contained in:
parent
7b9091428c
commit
5ecdc93f8e
12
.github/macos/entitlements.plist
vendored
Normal file
12
.github/macos/entitlements.plist
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<?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.cs.allow-jit</key>
|
||||||
|
<true/>
|
||||||
|
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
|
||||||
|
<true/>
|
||||||
|
<key>com.apple.security.cs.disable-library-validation</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
@ -344,6 +344,14 @@ if (APPLE)
|
|||||||
# Copy required frameworks to bundle
|
# Copy required frameworks to bundle
|
||||||
target_link_libraries(Zelda64Recompiled PRIVATE ${MOLTENVK_PATH} ${VULKAN_LOADER_PATH})
|
target_link_libraries(Zelda64Recompiled PRIVATE ${MOLTENVK_PATH} ${VULKAN_LOADER_PATH})
|
||||||
|
|
||||||
|
# Define the path to the entitlements file
|
||||||
|
set(ENTITLEMENTS_FILE ${CMAKE_SOURCE_DIR}/.github/macos/entitlements.plist)
|
||||||
|
|
||||||
|
# Ensure the entitlements file exists
|
||||||
|
if(NOT EXISTS ${ENTITLEMENTS_FILE})
|
||||||
|
message(FATAL_ERROR "Entitlements file not found at ${ENTITLEMENTS_FILE}")
|
||||||
|
endif()
|
||||||
|
|
||||||
# Post-build steps for macOS bundle
|
# Post-build steps for macOS bundle
|
||||||
add_custom_command(TARGET Zelda64Recompiled POST_BUILD
|
add_custom_command(TARGET Zelda64Recompiled POST_BUILD
|
||||||
# Copy and fix frameworks first
|
# Copy and fix frameworks first
|
||||||
@ -369,11 +377,8 @@ if (APPLE)
|
|||||||
COMMAND ${CMAKE_COMMAND} -E echo "Applying JIT compilation workaround"
|
COMMAND ${CMAKE_COMMAND} -E echo "Applying JIT compilation workaround"
|
||||||
COMMAND /bin/bash -c "printf '\\x07' | dd of=$<TARGET_FILE:Zelda64Recompiled> bs=1 seek=160 count=1 conv=notrunc"
|
COMMAND /bin/bash -c "printf '\\x07' | dd of=$<TARGET_FILE:Zelda64Recompiled> bs=1 seek=160 count=1 conv=notrunc"
|
||||||
|
|
||||||
# Sign frameworks first
|
# Finally sign the whole bundle with runtime option and entitlements
|
||||||
COMMAND /bin/bash -c "for f in $<TARGET_BUNDLE_DIR:Zelda64Recompiled>/Contents/Frameworks/*; do codesign --force --sign - \"$f\"; done"
|
COMMAND codesign --deep --force --sign - --entitlements ${ENTITLEMENTS_FILE} $<TARGET_BUNDLE_DIR:Zelda64Recompiled>
|
||||||
|
|
||||||
# Finally sign the whole bundle with runtime option
|
|
||||||
COMMAND codesign --deep --force --sign - --options runtime $<TARGET_BUNDLE_DIR:Zelda64Recompiled>
|
|
||||||
|
|
||||||
COMMENT "Performing post-build steps for macOS bundle"
|
COMMENT "Performing post-build steps for macOS bundle"
|
||||||
VERBATIM
|
VERBATIM
|
||||||
|
Loading…
Reference in New Issue
Block a user