From a5267eaa473ba8f947e896dede40661717c5896f Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Sat, 8 Feb 2020 07:59:35 +0100 Subject: [PATCH] AppVeyor: Initial support Signed-off-by: Simon Rozman --- README.md | 2 +- appveyor.yml | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 appveyor.yml diff --git a/README.md b/README.md index 87e305aa..f9fe5b36 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# WinStd +# WinStd [![Build status](https://ci.appveyor.com/api/projects/status/1e8868i88s10cp59?svg=true)](https://ci.appveyor.com/project/Amebis/winstd) Provides additional templates and function helpers for Windows API using Standard C++ diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..fa58a1f2 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,18 @@ +version: 1.0.{build} +environment: + matrix: + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + PROJECT_FILE: WinStd-15.0.sln + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 + PROJECT_FILE: WinStd-16.0.sln +configuration: + - Debug + - Release +platform: + - Win32 + - x64 + - ARM64 +build: + project: $(PROJECT_FILE) + parallel: true + verbosity: minimal