imgui/.travis.yml

19 lines
539 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:
- linux
2016-01-21 21:43:24 +00:00
- osx
2014-12-06 20:50:27 +00:00
compiler:
- gcc
- clang
2014-12-06 20:56:34 +00:00
before_install:
2018-02-14 10:33:46 +00:00
- if [ $TRAVIS_OS_NAME == linux ]; then sudo add-apt-repository -y ppa:keithw/glfw3 && sudo apt-get update -qq && sudo apt-get install -y --no-install-recommends libglfw3-dev libxrandr-dev libxi-dev libxxf86vm-dev libsdl2-dev; fi
- if [ $TRAVIS_OS_NAME == osx ]; then brew update && brew install glfw3 && brew install sdl2; fi
2014-12-06 20:56:34 +00:00
script:
2016-08-25 14:20:34 +00:00
- make -C examples/opengl2_example
- make -C examples/opengl3_example
- make -C examples/sdl_opengl3_example