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

AU: Added an option to the Projucer to enable sandbox safe AUs (required for newer versions of GarageBand)

This commit is contained in:
hogliux 2018-06-26 16:16:12 +01:00
parent 49aa9c9db4
commit fefbbc89b4
5 changed files with 17 additions and 1 deletions

View file

@ -460,6 +460,7 @@ Result PIPGenerator::setProjectSettings (ValueTree& jucerTree)
{
jucerTree.setProperty (Ids::projectType, "audioplug", nullptr);
jucerTree.setProperty (Ids::pluginManufacturer, metadata[Ids::vendor], nullptr);
jucerTree.setProperty (Ids::pluginAUIsSandboxSafe, "1", nullptr);
StringArray pluginFormatsToBuild (Ids::buildVST3.toString(), Ids::buildAU.toString(), Ids::buildStandalone.toString());
pluginFormatsToBuild.addArray (getExtraPluginFormatsToBuild());