SquidgeDSP/README.md
2026-08-02 22:44:37 +02:00

32 lines
No EOL
599 B
Markdown

# SquidgeDSP
SquidgeSoft VST/CLAP audio plugin library, built with [DPF](https://github.com/DISTRHO/DFP) (DISTRHO Plugin Framework).
## Prerequisites
- **Compiler:** clang
- **Build tools:** make, bear
## Build
### Clone
`git clone --recurse-submodules <repo>`
If already cloned without submodules
`git submodule update --init --recursive`
### Compile
`make plugins`
To cross compile with windows. (Not actually tested but builds)
`make plugins CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++ WINDOWS=true`
Do bear in front to generate types
```
make clean
bear -- make plugins
```