glfw/.appveyor.yml

24 lines
482 B
YAML
Raw Normal View History

2016-02-17 21:03:12 +00:00
branches:
only:
- ci
- master
skip_tags: true
environment:
CFLAGS: /WX
2016-02-17 21:03:12 +00:00
matrix:
- BUILD_SHARED_LIBS: ON
- BUILD_SHARED_LIBS: OFF
matrix:
fast_finish: true
build_script:
- mkdir build
- cd build
2017-07-17 21:42:37 +00:00
- cmake -DCMAKE_VERBOSE_MAKEFILE=ON -DBUILD_SHARED_LIBS=%BUILD_SHARED_LIBS% ..
2016-02-17 21:03:12 +00:00
- cmake --build .
notifications:
- provider: Email
to:
- ci@glfw.org
on_build_failure: true
on_build_success: false