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

23 lines
460 B
YAML
Raw Normal View History

2016-02-04 08:58:44 -05:00
branches:
only:
- ci
- master
skip_tags: true
2016-02-04 08:05:47 -05:00
environment:
matrix:
- BUILD_SHARED_LIBS: ON
- BUILD_SHARED_LIBS: OFF
2016-02-04 08:58:44 -05:00
matrix:
fast_finish: true
2016-02-04 08:05:47 -05:00
build_script:
2016-02-04 09:44:20 -05:00
- mkdir build
- cd build
- cmake -DBUILD_SHARED_LIBS=%BUILD_SHARED_LIBS% ..
2016-02-04 08:05:47 -05:00
- cmake --build .
2016-02-04 08:58:44 -05:00
notifications:
- provider: Email
2016-02-04 09:55:54 -05:00
to:
- ci@glfw.org
- on_build_failure: true
- on_build_success: false