-
-
Notifications
You must be signed in to change notification settings - Fork 412
/
vcpkg.json
38 lines (38 loc) · 1.26 KB
/
vcpkg.json
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
36
37
38
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/master/docs/vcpkg.schema.json",
"name": "msdfgen",
"version": "1.12.0",
"default-features": [
"extensions",
"geometry-preprocessing",
"standalone"
],
"features": {
"openmp": {
"description": "Parallelization of the core algorithm via the OpenMP framework"
},
"extensions": {
"description": "Extended functionality that depends on external libraries - loading fonts and SVG files, generating PNG images",
"dependencies": [
"freetype",
"tinyxml2",
"libpng"
]
},
"geometry-preprocessing": {
"description": "Preprocessing of non-compliant vector geometry via the Skia library",
"dependencies": [ {
"name": "msdfgen",
"default-features": false,
"features": [ "extensions" ]
}, {
"name": "skia",
"default-features": false,
"version>=": "0.36.0#3"
} ]
},
"standalone": {
"description": "Build a command line utility that wraps the library's functionality"
}
}
}