From 86a781216a976084be8d42295a3df841b024dd49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20H=C3=B6glinger-Stelzer?= Date: Sat, 1 Feb 2020 20:38:49 +0100 Subject: [PATCH] Updated appveyor.yml --- appveyor.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index cb72e00..f38e2bd 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,7 +1,18 @@ version: 1.16.{build}.0 image: Visual Studio 2019 -build_script: -- ps: .\build.ps1 +platform: +- x86 +- x64 +configuration: +- Release_DLL +install: +- cmd: git submodule -q update --init +before_build: +- ps: Invoke-WebRequest "https://downloads.vigem.org/other/nefarius/vpatch/vpatch.exe" -OutFile vpatch.exe +- cmd: vpatch.exe --stamp-version "%APPVEYOR_BUILD_VERSION%" --target-file ".\src\%APPVEYOR_PROJECT_NAME%.vcxproj" --vcxproj.inf-time-stamp +- cmd: vpatch.exe --stamp-version "%APPVEYOR_BUILD_VERSION%" --target-file ".\src\%APPVEYOR_PROJECT_NAME%.rc" --resource.file-version --resource.product-version +build: + project: $(APPVEYOR_BUILD_FOLDER)\$(APPVEYOR_PROJECT_NAME).sln artifacts: - path: 'bin**\*.lib' - path: 'bin**\*.dll'