Did you find this post?
TL;DR:
- in the Projucer/cmake add the
foleys_gui_magicmodule - nuke the PluginEditor.h and PluginEditor.cpp, and remove the
#include "PluginEditor.h"from PluginProcessor.cpp - In your PluginProcessor.h change the base class
juce::AudioProcessortofoleys::MagicProcessor - get rid of the methods
hasEditorandcreateEditorfrom header and source - unless you want to implement them yourself, get rid of
getStateInformationandsetStateInformationfrom header and source - in the constructor of your processor add this line to the body:
FOLEYS_SET_SOURCE_PATH (__FILE__);
That should be all what’s necessary.
N.B. I just pushed a new release, a few obstacles are fixed now
Let me know if that works.