If you want to debug your audio plugin as a standalone application, use (e.g. fork and modify) the juce_StandaloneFilterWindow.h. I really enjoy using it!
But at the moment it is not entirely compatible with an audio plugin generated by the Introjucer.
How to fix it
Either you have to add
AudioProcessor* JUCE_CALLTYPE createPluginFilterOfType (AudioProcessor::WrapperType)
{
return new TheNameOfYourPluginAudioProcessor();
}
to your PluginProcessor.cpp.
Or you need to change all occurrences of
createPluginFilterOfType (AudioProcessor::WrapperType)
to
createPluginFilter()
in
juce_StandaloneFilterWindow.h.
I’m not very familiar with the inner workings of JUCE, but I guess this changes to juce_StandaloneFilterWindow.h have just been overlooked.
May you fix it, Julian?
Kind regards,
Samuel