-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathappveyor.yml
27 lines (24 loc) · 910 Bytes
/
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
platform:
- x86
environment:
matrix:
- DL_MSVS: msvs10
DL_PLATFORM: win32
DL_CONFIG: debug
- DL_MSVS: msvs10
DL_PLATFORM: win32
DL_CONFIG: release
- DL_MSVS: msvs10
DL_PLATFORM: winx64
DL_CONFIG: debug
- DL_MSVS: msvs10
DL_PLATFORM: winx64
DL_CONFIG: release
install:
- if [%DL_PLATFORM%]==[win32] call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
- if [%DL_PLATFORM%]==[winx64] call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64
- if [%DL_PLATFORM%]==[winx64] call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86_amd64
- start /b /i /wait script\bootstrap.bat
- local\bam\bam.exe platform=%DL_PLATFORM% config=%DL_CONFIG% compiler=%DL_MSVS% -r s
- local\bam\bam.exe platform=%DL_PLATFORM% config=%DL_CONFIG% compiler=%DL_MSVS% -r s test
build: OFF