1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Add inter-app-audio entitlement to iOS AU hosts

This commit is contained in:
reuk 2023-02-07 19:05:57 +00:00
parent d54f7abb13
commit ca47dc66a3
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C
5 changed files with 41 additions and 18 deletions

View file

@ -49,7 +49,7 @@ namespace build_tools
if (isiOS)
{
if (isAudioPluginProject && shouldEnableIAA)
if ((isAudioPluginProject && shouldEnableIAA) || isAUPluginHost)
entitlements.set ("inter-app-audio", "<true/>");
if (isiCloudPermissionsEnabled)

View file

@ -36,6 +36,7 @@ namespace build_tools
bool isiOS = false;
bool isAudioPluginProject = false;
bool shouldEnableIAA = false;
bool isAUPluginHost = false;
bool isiCloudPermissionsEnabled = false;
bool isPushNotificationsEnabled = false;
bool isAppGroupsEnabled = false;