-
Notifications
You must be signed in to change notification settings - Fork 13
/
appveyor.yml
26 lines (23 loc) · 864 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
platform:
- x86
environment:
matrix:
- GETOPT_PLATFORM: win32
GETOPT_CONFIG: debug
- GETOPT_PLATFORM: win32
GETOPT_CONFIG: release
- GETOPT_PLATFORM: winx64
GETOPT_CONFIG: debug
- GETOPT_PLATFORM: winx64
GETOPT_CONFIG: release
install:
- if [%GETOPT_PLATFORM%]==[win32] call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
- if [%GETOPT_PLATFORM%]==[winx64] call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64
- if [%GETOPT_PLATFORM%]==[winx64] call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86_amd64
- git clone https://github.com/matricks/bam.git
- cd bam
- make_win64_msvc.bat
- cd ..
- bam\bam.exe platform=%GETOPT_PLATFORM% config=%GETOPT_CONFIG%
- local\%GETOPT_PLATFORM%\%GETOPT_CONFIG%\getopt_tests.exe
build: OFF