1# [Dragonfly Reverb](https://michaelwillis.github.io/dragonfly-reverb/)
2Dragonfly Reverb is a bundle of free audio effects for Linux, MacOS, and Windows.
3
4![Dragonfly Reverb](collage.png)
5
6## Download
7
8* **[Linux](https://github.com/michaelwillis/dragonfly-reverb/releases/download/3.2.3/DragonflyReverb-Linux-64bit-v3.2.3.tgz)**
9* **[MacOS](https://github.com/michaelwillis/dragonfly-reverb/releases/download/3.2.3/DragonflyReverb-MacOS-64bit-v3.2.3.zip)**
10* **[Windows (32 bit)](https://github.com/michaelwillis/dragonfly-reverb/releases/download/3.2.3/DragonflyReverb-Windows-32bit-v3.2.3.zip)**
11* **[Windows (64 bit)](https://github.com/michaelwillis/dragonfly-reverb/releases/download/3.2.3/DragonflyReverb-Windows-64bit-v3.2.3.zip)**
12
13## Dependencies
14
15Dragonfly reverb requires GL >= 3.0 to show the graphical interface.
16
17## Building
18
19On Linux or MacOS, invoke `make` to build Dragonfly Reverb.
20
21### Linux Build Dependencies
22
23* libx11-dev
24* libgl1-mesa-dev
25* libjack-jackd2-dev
26
27You can build against the system freeverb3 with using SYSTEM_FREEVERB3=true at build time. If this flag is not set, the bundled freeverb3 will be used. If SYSTEM_FREEVERB3=true, the build also requires libsamplerate.
28
29### Cross compiling for Windows (on Linux)
30
31#### Dependencies
32```
33sudo apt install wine i686-w64-mingw32-gcc i686-w64-mingw32-g++ x86_64-w64-mingw32-gcc x86_64-w64-mingw32-g++
34```
35
36#### 32 bit
37```
38make clean
39make WIN32=true CC=i686-w64-mingw32-gcc CXX=i686-w64-mingw32-g++
40```
41
42#### 64 bit
43```
44make clean
45make WIN32=true CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++
46```
47
48## License
49
50Dragonfly Reverb is distributed under the [GPL 3.0 License](https://www.gnu.org/licenses/gpl-3.0.en.html)
51