39 lines
1.3 KiB
JSON
39 lines
1.3 KiB
JSON
|
{
|
||
|
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
|
||
|
"name": "msdfgen",
|
||
|
"version": "1.10.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"
|
||
|
}
|
||
|
}
|
||
|
}
|