rhubarb-lip-sync/.travis.yml

25 lines
555 B
YAML
Raw Normal View History

2016-09-05 19:45:23 +00:00
language: cpp
sudo: required
dist: trusty
matrix:
include:
2016-09-11 08:29:17 +00:00
- os: linux
compiler: gcc
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get -q update
2016-09-05 19:45:23 +00:00
install:
- sudo apt-get -y install g++-5
2016-09-11 08:29:17 +00:00
- sudo apt-get -y install libboost-all-dev
script:
- mkdir build
- cd build
- cmake -DCMAKE_CXX_COMPILER=g++-5 .. && make
2016-09-11 09:16:31 +00:00
- os: osx
osx_image: xcode7.3
script:
- mkdir build
- cd build
- cmake .. && make