forked from facebookarchive/ds2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
45 lines (37 loc) · 1.04 KB
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Operating system (build VM template)
os: Visual Studio 2017
version: 0.1-branch-{branch}-build-{build}
branches:
only:
- master
environment:
matrix:
- generator: "Visual Studio 14 2015"
toolchain: "Windows"
- generator: "Visual Studio 15 2017"
toolchain: "Windows"
- generator: "Visual Studio 15 2017 Win64"
toolchain: "Windows"
- generator: "Visual Studio 15 2017"
toolchain: "WinStore"
- generator: "Visual Studio 15 2017 ARM"
toolchain: "WinStore"
clone_folder: c:\projects\ds2
shallow_clone: true
platform: x64
configuration: Release
install:
- C:\cygwin\setup-x86.exe
-qnNdO
-R C:/cygwin
-s http://cygwin.mirror.constant.com
-l C:/cygwin/var/cache/setup
-P bison -P flex
build_script:
- mkdir "C:\projects\ds2\build"
- set PATH=%PATH%;C:\cygwin\bin
- echo Running cmake...
- cd c:\projects\ds2\build
- cmake -G "%generator%" -DCMAKE_TOOLCHAIN_FILE=../Support/CMake/Toolchain-%toolchain%.cmake ..
- msbuild /p:Configuration=Release ds2.vcxproj
test: off