23 lines
No EOL
413 B
YAML
23 lines
No EOL
413 B
YAML
#install: make get-deps libsdl2* libglew* libglut* libglew-dev:i386 libsndfile-dev cmake
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
# add PPAs with more up-to-date toolchains
|
|
- ubuntu-toolchain-r-test
|
|
- llvm-toolchain-precise-3.6
|
|
packages:
|
|
- make
|
|
- libsdl2*
|
|
- libglew*
|
|
|
|
# Enable C++ support
|
|
language: cpp
|
|
|
|
# Compiler selection
|
|
compiler:
|
|
- gcc
|
|
|
|
# Build steps
|
|
script:
|
|
- cmake . && make |