12345678910111213141516171819202122232425262728 |
- # This is the project file for the automated build system travis (travis-ci.com).
- matrix:
- include:
- - os: linux
- sudo: false
- dist: trusty
- - os: osx
- language: c
- compiler: gcc
- addons:
- apt:
- packages:
- - libgl1-mesa-dev
- - libglew-dev
- - libhidapi-dev
- - libsdl2-dev
- before_install:
- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install glew hidapi sdl2; fi
- - ./autogen.sh
- install: true # skip install step
- script: ./configure --enable-openglexample && make
|