travis: add clang support

This commit is contained in:
Dirk Best 2015-07-10 18:41:35 +02:00
parent 5d80e27c48
commit 7ad2ae5116

View File

@ -1,8 +1,15 @@
language: cpp
compiler:
- gcc
- clang
env:
- SUBTARGET=arcade
- SUBTARGET=mess
script: make -j2
script:
- if [ $CC == 'clang' ];
then make -j2 linux_x64_clang;
else make -j2;
fi
sudo: required
before_install:
- sudo add-apt-repository ppa:zoogie/sdl2-snapshots -y