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

Projucer: Enable "Plugin is a Synth" setting for synth plug-in examples

This commit is contained in:
ed 2019-01-23 10:53:58 +00:00
parent fcee6f7e1c
commit cdd8f2b78a

View file

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