naps2/NAPS2.App.Mac/Entitlements.plist
Ben Olden-Cooligan 47933a6a4b Mac: Set dyld entitlement
Fixes #116
2023-03-19 15:26:49 -07:00

13 lines
542 B
Plaintext

<?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/>
<!-- Some macOS versions have trouble loading sane without dyld (see WorkerFactory.cs).
From a security perspective this should be ok as libraries will still need to have the right signature. -->
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
<true/>
</dict>
</plist>