blob: 915431b2e8439b98efbb73f42459ca122b65307b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
os:
- linux
- osx
dist: trusty
sudo: required
language: c
install:
- >
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
# Install pulseaudio, portaudio, ALSA, JACK dependencies for
# corresponding backends.
# Install Qt5 dependency for alsoft-config.
sudo apt-get install -qq \
libpulse-dev \
portaudio19-dev \
libasound2-dev \
libjack-dev \
qtbase5-dev
fi
script: cmake . && make -j2
|