forked from Aloshi/EmulationStation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
48 lines (44 loc) · 891 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
language: cpp
sudo: required
dist: trusty
matrix:
fast_finish: true
include:
- compiler: gcc
- compiler: clang
- os: osx
allow_failures:
- os: osx
before_script:
- if [[ $TRAVIS_OS_NAME == linux ]]; then
sudo apt-get -qq update &&
sudo apt-get install -y
build-essential
cmake
fonts-droid
libsdl2-dev
libboost-system-dev
libboost-filesystem-dev
libboost-date-time-dev
libboost-locale-dev
libfreeimage-dev
libfreetype6-dev
libeigen3-dev
libcurl4-openssl-dev
libasound2-dev
libgl1-mesa-dev
; fi
- if [[ $TRAVIS_OS_NAME == osx ]]; then
brew update &&
brew install
eigen
freeimage
freetype
sdl2
; fi
- $CXX --version
- cmake --version
script:
- mkdir build && cd build
- cmake ..
- make