summaryrefslogtreecommitdiff
path: root/ext/glfw/.appveyor.yml
diff options
context:
space:
mode:
authorLorenzo Torres <lorenzotorres@outlook.it>2025-03-12 19:56:19 +0100
committerLorenzo Torres <lorenzotorres@outlook.it>2025-03-12 19:56:19 +0100
commit4f45899a3c28440724ffcaa3a604ad48f18a25c8 (patch)
treececd79da4e3e3cb17ffd86ec1a58d6e77a44cb83 /ext/glfw/.appveyor.yml
parentfc39b277155044366f1647b238a415fab4028d83 (diff)
base code
Diffstat (limited to 'ext/glfw/.appveyor.yml')
-rw-r--r--ext/glfw/.appveyor.yml47
1 files changed, 47 insertions, 0 deletions
diff --git a/ext/glfw/.appveyor.yml b/ext/glfw/.appveyor.yml
new file mode 100644
index 0000000..c58911c
--- /dev/null
+++ b/ext/glfw/.appveyor.yml
@@ -0,0 +1,47 @@
+image:
+ - Visual Studio 2015
+branches:
+ only:
+ - ci
+ - master
+ - latest
+ - 3.3-stable
+skip_tags: true
+environment:
+ matrix:
+ - GENERATOR: MinGW Makefiles
+ BUILD_SHARED_LIBS: ON
+ CFLAGS: -Werror
+ - GENERATOR: MinGW Makefiles
+ BUILD_SHARED_LIBS: OFF
+ CFLAGS: -Werror
+ - GENERATOR: Visual Studio 12 2013
+ BUILD_SHARED_LIBS: ON
+ CFLAGS: /WX
+ - GENERATOR: Visual Studio 12 2013
+ BUILD_SHARED_LIBS: OFF
+ CFLAGS: /WX
+matrix:
+ fast_finish: true
+for:
+-
+ matrix:
+ only:
+ - GENERATOR: MinGW Makefiles
+ build_script:
+ - set PATH=%PATH:C:\Program Files\Git\usr\bin=C:\MinGW\bin%
+ - cmake -B build -G "%GENERATOR%" -DBUILD_SHARED_LIBS=%BUILD_SHARED_LIBS%
+ - cmake --build build
+-
+ matrix:
+ only:
+ - GENERATOR: Visual Studio 12 2013
+ build_script:
+ - cmake -B build -G "%GENERATOR%" -DBUILD_SHARED_LIBS=%BUILD_SHARED_LIBS%
+ - cmake --build build --target glfw
+notifications:
+ - provider: Email
+ to:
+ - ci@glfw.org
+ on_build_failure: true
+ on_build_success: false