forked from mipops/dvrescue
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.appveyor.yml
29 lines (26 loc) · 990 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
28
29
image: Visual Studio 2017
configuration:
- Release
platform:
- x64
before_build:
- cmd: git -C .. clone -q https://github.com/MediaArea/zlib.git
- cmd: git -C .. clone -q https://github.com/MediaArea/ZenLib.git
- cmd: git -C .. clone -q https://github.com/MediaArea/MediaInfoLib.git
- ps: >-
$Env:PATH += ";C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin";
$Env:PATH += ";C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/x86_amd64";
If ($Env:PLATFORM -Eq "Win32") {
Push-Location ..\zlib\contrib\masmx86
ml /nologo /coff /safeseh /Zi /c /Flmatch686.lst match686.asm
ml /nologo /coff /safeseh /Zi /c /Flinffas32.lst inffas32.asm
Pop-Location
} Else {
Push-Location ..\zlib\contrib\masmx64
ml64 /nologo /Zi /c /Flinffasx64 inffasx64.asm
ml64 /nologo /Zi /c /Flgvmat64 gvmat64.asm
Pop-Location
}
build:
project: Project\MSVC2017\DVRescue.sln
verbosity: quiet