1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-09-24 03:28:33 +02:00
imgui/.travis.yml

32 lines
839 B
YAML
Raw Normal View History

2014-12-06 21:50:27 +01:00
language: cpp
2018-02-20 15:07:34 +01:00
sudo: required
dist: trusty
2014-12-06 21:56:34 +01:00
os:
- linux
2016-01-21 22:43:24 +01:00
- osx
2014-12-06 21:50:27 +01:00
compiler:
- gcc
- clang
2014-12-06 21:56:34 +01:00
before_install:
- if [ $TRAVIS_OS_NAME == linux ]; then
2018-02-20 15:07:34 +01:00
sudo apt-get update -qq;
sudo apt-get install -y --no-install-recommends libxrandr-dev libxi-dev libxxf86vm-dev libsdl2-dev;
wget https://github.com/glfw/glfw/releases/download/3.2.1/glfw-3.2.1.zip;
unzip glfw-3.2.1.zip && cd glfw-3.2.1;
2018-02-20 15:12:17 +01:00
cmake -DBUILD_SHARED_LIBS=true -DGLFW_BUILD_EXAMPLES=false -DGLFW_BUILD_TESTS=false -DGLFW_BUILD_DOCS=false .;
2018-02-20 15:07:34 +01:00
sudo make -j $CPU_NUM install && cd ..;
fi
- if [ $TRAVIS_OS_NAME == osx ]; then
2018-02-20 15:07:34 +01:00
brew update;
brew install glfw3;
brew install sdl2;
fi
2014-12-06 21:56:34 +01:00
script:
2016-08-25 16:20:34 +02:00
- make -C examples/opengl2_example
- make -C examples/opengl3_example
- make -C examples/sdl_opengl3_example