-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
.appveyor.yml
35 lines (30 loc) · 954 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
30
31
32
33
34
35
version: 3.4.1-{build}
configuration: Release
image: Visual Studio 2022
platform:
- x64
- Win32
branches:
except:
- tmp
install:
- set FREETYPE_VER=2.13.2
- set ZLIB_VER=1.3.1
- set TTFA_VER=1.8.4
- set TTFA_REV=1
- cd vc
- cd freetype
- appveyor DownloadFile http://download.savannah.gnu.org/releases/freetype/freetype-%FREETYPE_VER%.tar.gz
- tar xzf freetype-%FREETYPE_VER%.tar.gz --strip-components=1
- del freetype-%FREETYPE_VER%.tar.gz
- cd ..\zlib
- appveyor DownloadFile http://zlib.net/zlib-%ZLIB_VER%.tar.gz
- tar xzf zlib-%ZLIB_VER%.tar.gz --strip-components=1
- del zlib-%ZLIB_VER%.tar.gz
- cd ..
- appveyor DownloadFile https://github.com/mgieseki/ttfautohint-dll/releases/download/r%TTFA_VER%-%TTFA_REV%/ttfautohint-%TTFA_VER%-dll64.zip
- unzip -o -d ttfautohint ttfautohint-%TTFA_VER%-dll64.zip
- del ttfautohint-%TTFA_VER%-dll64.zip
build:
project: vc\dvisvgm.sln
verbosity: minimal