From 3b734f0d6b9e28c1f2c4ae54e3f46e573e02f4a5 Mon Sep 17 00:00:00 2001 From: Andreas Grois Date: Fri, 9 Mar 2018 21:36:10 +0100 Subject: Initial Commit --- glfw-3.2.1/.appveyor.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 glfw-3.2.1/.appveyor.yml (limited to 'glfw-3.2.1/.appveyor.yml') diff --git a/glfw-3.2.1/.appveyor.yml b/glfw-3.2.1/.appveyor.yml new file mode 100644 index 0000000..ae658cc --- /dev/null +++ b/glfw-3.2.1/.appveyor.yml @@ -0,0 +1,22 @@ +branches: + only: + - ci + - master +skip_tags: true +environment: + matrix: + - BUILD_SHARED_LIBS: ON + - BUILD_SHARED_LIBS: OFF +matrix: + fast_finish: true +build_script: + - mkdir build + - cd build + - cmake -DBUILD_SHARED_LIBS=%BUILD_SHARED_LIBS% .. + - cmake --build . +notifications: + - provider: Email + to: + - ci@glfw.org + - on_build_failure: true + - on_build_success: false -- cgit v1.2.3