Skip to content

Commit

Permalink
appveyor multiple platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
debris authored and cdunn2001 committed Apr 17, 2015
1 parent 13c36e9 commit 1b49a55
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,21 @@ os: Windows Server 2012 R2

clone_folder: c:\projects\jsoncpp

#platform: Any CPU
platform:
- Win32
- x64

configuration:
- Debug
- Release

install:
# by default, all script lines are interpreted as batch

# scripts to run before build
before_build:
- echo "Running cmake..."
- cd c:\projects\jsoncpp
- cmake .
- cmake --version
- if %PLATFORM% == Win32 cmake .
- if %PLATFORM% == x64 cmake -G "Visual Studio 12 2013 Win64" .

build:
project: jsoncpp.sln # path to Visual Studio solution or project

0 comments on commit 1b49a55

Please sign in to comment.