diff --git a/extras/Build/juce_build_tools/utils/juce_PlistOptions.cpp b/extras/Build/juce_build_tools/utils/juce_PlistOptions.cpp index 3d3aeeb2f6..8cd8a7adc5 100644 --- a/extras/Build/juce_build_tools/utils/juce_PlistOptions.cpp +++ b/extras/Build/juce_build_tools/utils/juce_PlistOptions.cpp @@ -340,7 +340,10 @@ namespace build_tools auto* tagsArray = componentDict->createNewChildElement ("array"); tagsArray->createNewChildElement ("string") - ->addTextElement (isPluginSynth ? "Synth" : "Effects"); + ->addTextElement (isPluginSynth ? "Synth" : "Effects"); + + if (auMainType.removeCharacters ("'") == "aumi") + tagsArray->createNewChildElement ("string")->addTextElement ("MIDI"); return { plistKey, plistEntry }; }