From 89629245845471242aeb64f5a47bfda83f1204aa Mon Sep 17 00:00:00 2001 From: Duncan Ogilvie Date: Sun, 28 Apr 2019 20:18:47 +0200 Subject: [PATCH] Add AppVeyor file for CI --- appveyor.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..335b55b --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,13 @@ +version: appveyor.{build} +image: + - Visual Studio 2017 + - Ubuntu +environment: + MINGW_DIR: C:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0 +install: + - cmd: set PATH=%MINGW_DIR%\mingw64\bin;%PATH% + - sh: sudo apt update + - sh: sudo apt -y install libgtk-3-dev +build_script: + - cmd: mingw32-make.exe TARGET=windows CFLAGS=-O3 + - sh: make \ No newline at end of file