Skip to content

Commit

Permalink
Attempt to add multiplatform appveyor build
Browse files Browse the repository at this point in the history
  • Loading branch information
dozius committed Jun 4, 2016
1 parent ee80ece commit 71ee558
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,7 @@ Debug/
Release/
x64/
Win32/

# Build Tree
/buildx86
/buildx64
15 changes: 10 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,22 @@ os: Visual Studio 2015
matrix:
fast_finish: true

# platform:
# - x86
# - x64
platform:
- x86
- x64

configuration:
- Release

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

0 comments on commit 71ee558

Please sign in to comment.