imgui/.travis.yml

17 lines
398 B
YAML
Raw Normal View History

2014-12-06 20:50:27 +00:00
language: cpp
2014-12-06 20:56:34 +00:00
os:
- osx
2014-12-06 20:50:27 +00:00
compiler:
- gcc
2014-12-06 20:56:34 +00:00
before_install:
2014-12-06 21:06:00 +00:00
- if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get update -qq && sudo apt-get install -y --no-install-recommends libglfw3-dev libglew-dev; fi
- if [ $TRAVIS_OS_NAME == osx ]; then brew update && brew install glew && brew install glfw3; fi
2014-12-06 20:56:34 +00:00
script:
- cd examples/opengl_example && make
- cd examples/opengl3_example && make
2014-12-06 20:50:27 +00:00