What is DPF?
DPF, short name for Distrho Plugin Framework, is a framework for building audio plugins in C++, compared to JUCE is smaller...
For further actions, you may consider blocking this person and/or reporting abuse
Beautifully written and paced tutorial - I just fail on the very last command:
DPFTutorial/plugins/MyAmp$: make
I get:
I am running this from the superdirectory of DPFTutorial (in my case called "dev") is that correct?
If I navigate instead into the MyAmp folder and run make I get
MyAmp.cpp:19:20: error: ‘d_const’ was not declared in this scope; did you mean ‘d_cconst’?But I presume that comes from not running from the super directory. But do you have any ideas what was wrong with the original make command?
As I say, really well written tutorial though
Steve
Sorry for the delay, it's been a while since I've checked the comments.
For the question, can you give me an overview of your plugin folder? If there's a makefile it should be able to at least not give this erro.
The second error message is actually correct, it should be
d_cconstinstead ofd_const, I'll fix the code.Anyway thanks for the feedback, I hope I helped even if just a little.