1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00
glfw/.travis.yml

29 lines
478 B
YAML
Raw Normal View History

2015-04-14 17:47:17 -04:00
language: c
compiler: clang
branches:
only:
- travis
- master
os:
- linux
- osx
sudo: false
addons:
apt:
sources:
- kubuntu-backports
packages:
- cmake
env:
- BUILD_SHARED_LIBS=ON
- BUILD_SHARED_LIBS=OFF
2015-04-14 17:47:17 -04:00
script:
- cmake -DBUILD_SHARED_LIBS=${BUILD_SHARED_LIBS} .
- cmake --build .
2015-04-14 17:47:17 -04:00
notifications:
email:
recipients:
- travis@glfw.org
on_success: never
on_failure: always