Skip to content

Setting up a new project

Filipe Coelho edited this page Sep 16, 2021 · 2 revisions

This page describes how to setup a new audio plugin based on DPF. It is assumed you have at least some basic programming knowledge and know how to open there Terminal for command-line access.

Source code repository layout/structure

Let's start with setting up a folder where our plugin will reside, including DPF and a few extra goodies (LICENSE, README, etc)

Typically you would go with something like this:

- dpf
+ plugins
  + plugin1
    - DistrhoPluginInfo.h
    - Plugin.cpp
    - UI.cpp
    - Makefile
  + plugin2
    - DistrhoPluginInfo.h
    - Plugin.cpp
    - UI.cpp
    - Makefile
- Makefile
- LICENSE
- README.md
Clone this wiki locally