From 61391ace9415c1c31ab36d560409e605b261e688 Mon Sep 17 00:00:00 2001 From: Yury Klushin Date: Sat, 8 Apr 2017 21:51:13 +0300 Subject: [PATCH] Add: AppVeyor config file --- appveyor.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index bc451dd..185b8d1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,9 +1,20 @@ os: Visual Studio 2015 +platform: + - x86 + - x64 + +configuration: + - Debug + - Release + install: - git submodule update --init --recursive - - set QTDIR=C:\Qt\5.8\msvc2015_64 - set PATH=%PATH%;%QTDIR%\bin + - if "%platform%" == "x86" call set QTDIR=C:\Qt\5.8\msvc2015 + - if "%platform%" == "x64" call set QTDIR=C:\Qt\5.8\msvc2015_64 + - if "%platform%" == "x86" call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" + - if "%platform%" == "x64" call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64 build_script: - qmake fsstudio.pro