1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/master/docs/vcpkg.schema.json",
- "name": "msdfgen",
- "version": "1.12.1",
- "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"
- }
- }
- }
|