From 71ee558591ec1d1a827ae2f7986ff0def6b5ecb3 Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Sat, 4 Jun 2016 18:10:02 -0400 Subject: [PATCH] Attempt to add multiplatform appveyor build --- .gitignore | 4 ++++ appveyor.yml | 15 ++++++++++----- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index f62d7e7..4b5d306 100644 --- a/.gitignore +++ b/.gitignore @@ -54,3 +54,7 @@ Debug/ Release/ x64/ Win32/ + +# Build Tree +/buildx86 +/buildx64 diff --git a/appveyor.yml b/appveyor.yml index f949aa0..5530df0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,9 +3,9 @@ os: Visual Studio 2015 matrix: fast_finish: true -# platform: -# - x86 -# - x64 +platform: + - x86 + - x64 configuration: - Release @@ -13,7 +13,12 @@ configuration: before_build: - git submodule update --init --recursive - python get_steinberg_sdk.py - - cmake -G "Visual Studio 14 2015 Win64" . + - mkdir build%PLATFORM% + - pushd build%PLATFORM% + - if %PLATFORM% == x86 cmake . + - if %PLATFORM% == x64 cmake -G "Visual Studio 14 2015 Win64" . + - popd build: - project: Smartelectronix.sln + project: build%PLATFORM%/Smartelectronix.sln +