From 291099751e8482decfd1623ed105f22711806547 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Mon, 6 Mar 2017 09:51:50 +0200 Subject: [PATCH] Added basic AppVeyor configuration Things to do: dependencies for sound backends and Windows XP support --- .appveyor.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 000000000..508746db6 --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,23 @@ +version: "{build}" + +os: Visual Studio 2015 + +platform: + - Win32 + - x64 + +configuration: + - Debug + - Release + +before_build: + - cmd: md build + - cmd: cd build + - cmd: if "%platform%"=="Win32" set CMAKE_GENERATOR_NAME=Visual Studio 14 2015 + - cmd: if "%platform%"=="x64" set CMAKE_GENERATOR_NAME=Visual Studio 14 2015 Win64 + - cmd: cmake -G "%CMAKE_GENERATOR_NAME%" -DCMAKE_BUILD_TYPE=%configuration% .. + +build: + project: build\GZDoom.sln + parallel: true + verbosity: minimal