Skip to content

Commit 41efa87

Browse files
committed
Add .appveyor.yml
+ Update README.md Signed-off-by: Maxime Gervais <[email protected]>
1 parent 5a989c0 commit 41efa87

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.appveyor.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
configuration:
2+
- Release
3+
4+
platform:
5+
- Win32
6+
- x64
7+
8+
before_build:
9+
- cmd: git -C .. clone -q https://github.com/MediaArea/zlib.git
10+
- cmd: git -C .. clone -q https://github.com/MediaArea/ZenLib.git
11+
- ps: >-
12+
$Env:PATH += ";C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin";
13+
$Env:PATH += ";C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/x86_amd64";
14+
If ($Env:PLATFORM -Eq "Win32") {
15+
Push-Location ..\zlib\contrib\masmx86
16+
ml /nologo /coff /safeseh /Zi /c /Flmatch686.lst match686.asm
17+
ml /nologo /coff /safeseh /Zi /c /Flinffas32.lst inffas32.asm
18+
Pop-Location
19+
} Else {
20+
Push-Location ..\zlib\contrib\masmx64
21+
ml64 /nologo /Zi /c /Flinffasx64 inffasx64.asm
22+
ml64 /nologo /Zi /c /Flgvmat64 gvmat64.asm
23+
Pop-Location
24+
}
25+
26+
build:
27+
project: Project\MSVC2015\MediaInfoLib.sln
28+
verbosity: quiet

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
MediaInfo(Lib) is a convenient unified display of the most relevant technical and tag data for video and audio files.
44

55
[![Build Status](https://travis-ci.org/MediaArea/MediaInfoLib.svg?branch=master)](https://travis-ci.org/MediaArea/MediaInfoLib)
6+
[![Build status](https://ci.appveyor.com/api/projects/status/enael8oersp6nntd/branch/master?svg=true)](https://ci.appveyor.com/project/MediaArea/mediainfolib/branch/master)
67

78
MediaInfoLib - https://github.com/MediaArea/MediaInfoLib
89
Copyright (c) MediaArea.net SARL. All Rights Reserved.

0 commit comments

Comments
 (0)