7 lines
407 B
YAML
7 lines
407 B
YAML
language: cpp
|
|
compiler: gcc
|
|
before_install: sudo apt-get update
|
|
install: sudo apt-get install libqt4-dev libsndfile-dev fftw3-dev libvorbis-dev libogg-dev libasound2-dev libjack-dev libsdl-dev libsamplerate0-dev libstk0-dev libfluidsynth-dev portaudio19-dev wine-dev g++-multilib libfltk1.3-dev
|
|
before_script: mkdir build && cd build
|
|
script: cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .. && make -j8 VERBOSE=1
|