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

Added a missing plug-in capability when creating the AudioPluginDemo project

This commit is contained in:
Tom Poole 2018-04-23 12:25:02 +01:00
parent d7528138cb
commit 884f03aaa3

View file

@ -584,9 +584,12 @@ StringArray PIPGenerator::getPluginCharacteristics() const
auto name = metadata[Ids::name].toString();
if (name == "AudioPluginDemo")
return { Ids::pluginWantsMidiIn.toString(), Ids::pluginEditorRequiresKeys.toString() };
return { Ids::pluginWantsMidiIn.toString(),
Ids::pluginProducesMidiOut.toString(),
Ids::pluginEditorRequiresKeys.toString() };
else if (name == "AUv3SynthPlugin" || name == "MultiOutSynthPlugin")
return { Ids::pluginWantsMidiIn.toString(), Ids::pluginIsSynth.toString() };
return { Ids::pluginWantsMidiIn.toString(),
Ids::pluginIsSynth.toString() };
else if (name == "ArpeggiatorPlugin")
return { Ids::pluginIsMidiEffectPlugin.toString() };