From 4ddbad6ffb6b9394af3f00e28600c3b22646ea4e Mon Sep 17 00:00:00 2001 From: Cagdas Evren Gerede Date: Fri, 23 Mar 2018 00:27:19 +0300 Subject: [PATCH] Create appveyor.yml --- appveyor.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..1ec7c04ca --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,15 @@ +install: + - cmd: choco install wget + - cmd: wget https://github.com/libexpat/libexpat/releases/download/R_2_2_5/expat-win32bin-2.2.5.exe --output-document=C:\expat.exe + - cmd: C:\expat.exe /silent + - cmd: msbuild "Src\Win32\Dasher.sln" + - cmd: if exist Src\Win32\Target\Release\Dasher.exe appveyor exit + - cmd: if not exist Src\Win32\Target\Release\Dasher.exe exit 1 + +environment: + expat: 'C:\Program Files (x86)\Expat 2.2.5' + GENERATOR: Visual Studio 15 2017 + PLATFORM: Win32 + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + +build: off