Compiling with Dev-C++
Brought to you by:
rumpelrausch
Hi,
I had some problems compiling ZR-3 with Dev-C++. Frank
Iker from the VSTSDK mailing list provided the following:
controls.cpp:
add #include "Editor.h" and change every
getParent->getEditor()-> to
((Editor*)getParent()->getEditor())->
"Editor" is the name of the editor class which is
derived from AEffGUIEditor
Editor.h:
move setParameter(long, float) from protected to public.
Once the VSTGUI and SDK files are referenced correctly,
this gets the project to compile. (Now I just have to
sort out why it's segfaulting before calling main() (or
even DllMain) :-) .