mirror of https://github.com/inolen/redream.git
26 lines
436 B
YAML
26 lines
436 B
YAML
language: cpp
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
compiler: gcc
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- kubuntu-backports
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- cmake
|
|
- gcc-4.9
|
|
- g++-4.9
|
|
|
|
- os: osx
|
|
compiler: clang
|
|
|
|
script:
|
|
- if [ "$CC" = "gcc" ]; then export CC="gcc-4.9" CXX="g++-4.9"; fi
|
|
- mkdir build
|
|
- cd build
|
|
- cmake ..
|
|
- make
|