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.
2 parents db7ad75 + 441f8cd commit c66cc27Copy full SHA for c66cc27
appveyor.yml
@@ -0,0 +1,34 @@
1
+# This is a comment.
2
+
3
+version: build.{build}
4
5
+os: Windows Server 2012 R2
6
7
+clone_folder: c:\projects\jsoncpp
8
9
+platform:
10
+ - Win32
11
+ - x64
12
13
+configuration:
14
+ - Debug
15
+ - Release
16
17
+# scripts to run before build
18
+before_build:
19
+ - echo "Running cmake..."
20
+ - cd c:\projects\jsoncpp
21
+ - cmake --version
22
+ - if %PLATFORM% == Win32 cmake .
23
+ - if %PLATFORM% == x64 cmake -G "Visual Studio 12 2013 Win64" .
24
25
+build:
26
+ project: jsoncpp.sln # path to Visual Studio solution or project
27
28
+deploy:
29
+ provider: GitHub
30
+ auth_token:
31
+ secure: K2Tp1q8pIZ7rs0Ot24ZMWuwr12Ev6Tc6QkhMjGQxoQG3ng1pXtgPasiJ45IDXGdg
32
+ on:
33
+ branch: master
34
+ appveyor_repo_tag: true
0 commit comments