Skip to content
Pascal Gauthier edited this page Jun 8, 2016 · 2 revisions

Linux builds

Building Dexed on linux should be straightforward if you have the right dependencies. Dexed source already comes with JUCE but JUCE dependencies needs to be installed.

On Debian, these packages needs to be installed:

$ sudo apt-get install freeglut3-dev g++ libasound2-dev libcurl4-openssl-dev            \
                     libfreetype6-dev libjack-jackd2-dev libx11-dev libxcomposite-dev \
                     libxcursor-dev libxinerama-dev libxrandr-dev mesa-common-dev

The VST SDK must also be downloaded.

Buidling

Thanks to @SpotlightKid for this easy recipe. Change my VST SDK path with yours, and run make :

srcdir=/path/to/where/i/extracted/vst3sdk
cd Builds/Linux
sed -i -e "s|-I ~/src/vstsdk2.4|-I $srcdir/VST3\\\\ SDK|" Makefile
make CONFIG=Release
install -Dm755 build/Dexed.so /usr/lib/vst/Dexed.so   
Clone this wiki locally