We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13c36e9 commit 1b49a55Copy full SHA for 1b49a55
appveyor.yml
@@ -4,19 +4,21 @@ os: Windows Server 2012 R2
4
5
clone_folder: c:\projects\jsoncpp
6
7
-#platform: Any CPU
+platform:
8
+ - Win32
9
+ - x64
10
+
11
configuration:
12
- Debug
13
- Release
14
-install:
- # by default, all script lines are interpreted as batch
-
15
# scripts to run before build
16
before_build:
17
- echo "Running cmake..."
18
- cd c:\projects\jsoncpp
19
- - cmake .
+ - cmake --version
20
+ - if %PLATFORM% == Win32 cmake .
21
+ - if %PLATFORM% == x64 cmake -G "Visual Studio 12 2013 Win64" .
22
23
build:
24
project: jsoncpp.sln # path to Visual Studio solution or project
0 commit comments