-
-
Notifications
You must be signed in to change notification settings - Fork 371
/
Copy pathqlcplus.entitlements
49 lines (46 loc) · 1.83 KB
/
qlcplus.entitlements
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?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>
<!-- APP SANDBOX ENTITLEMENTS
See https://developer.apple.com/documentation/security/app_sandbox for details.
-->
<!-- Enable the App Sandbox -->
<key>com.apple.security.app-sandbox</key>
<true/>
<!-- Allow interacting with the microphone -->
<key>com.apple.security.device.microphone</key>
<true/>
<!-- Allow interacting with USB devices -->
<key>com.apple.security.device.usb</key>
<true/>
<!-- Allow opening outgoing network connections -->
<key>com.apple.security.network.client</key>
<true/>
<!-- Allow access to multicast networking (for E1.31) -->
<key>com.apple.developer.networking.multicast</key>
<true/>
<!-- Allow access to files selected with an Open/Save dialog -->
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<!-- Persists access permission for files selected with an Open/Save dialog across restarts -->
<key>com.apple.security.files.bookmarks.app-scope</key>
<true/>
<!-- HARDENED RUNTIME ENTITLEMENTS
See https://developer.apple.com/documentation/security/hardened_runtime for details.
-->
<!-- Allow interacting with the microphone -->
<key>com.apple.security.device.audio-input</key>
<true/>
<!-- Allow execution of JIT-compiled code
This is necessary for RGB Scripts that use Qt's JavaScript JIT compiler.
-->
<key>com.apple.security.cs.allow-jit</key>
<true/>
<!-- Allow unsigned executable memory
This is necessary for RGB Scripts that use Qt's JavaScript JIT compiler.
-->
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
</dict>
</plist>