8000 Add AppVeyor configuration file, appveyor.yml · unittest-cpp/unittest-cpp@4b8d3a7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4b8d3a7

Browse files
committed
Add AppVeyor configuration file, appveyor.yml
Builds project files with cmake, then builds those with VS2013. OS is Windows Server 2012. Debug and Release configurations are both built.
1 parent edf1e37 commit 4b8d3a7

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

appveyor.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
os:
2+
- Windows Server 2012 R2
3+
4+
install:
5+
# Generate solution files using cmake, in 'builds' directory.
6+
# No need to create it because it's part of the repo.
7+
- cd builds && cmake -G "Visual Studio 12" ../ && cd ..
8+
9+
configuration:
10+
- Debug
11+
- Release
12+
13+
build:
14+
project: builds/UnitTest++.sln

0 commit comments

Comments
 (0)
0