Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Merge pull request #10022 from MerryMage/codesign-debug
DolphinQt: Add entitlement to allow debugger to attach in Debug builds
- Loading branch information
Showing
2 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| <?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/> | ||
| <!-- Needed for GameCube microphone emulation --> | ||
| <key>com.apple.security.device.audio-input</key> | ||
| <true/> | ||
| <!-- TODO: It is likely this requirement is coming from Qt, but should confirm --> | ||
| <key>com.apple.security.automation.apple-events</key> | ||
| <true/> | ||
| <!-- This is needed to use adhoc signed linked libraries --> | ||
| <key>com.apple.security.cs.disable-library-validation</key> | ||
| <true/> | ||
| <!-- This is needed to attach a debugger to the process --> | ||
| <key>com.apple.security.get-task-allow</key> | ||
| <true/> | ||
| </dict> | ||
| </plist> |