1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "name": "freetype",
- "version": "2.12.1",
- "port-version": 2,
- "description": "A library to render fonts.",
- "homepage": "https://www.freetype.org/",
- "license": "FTL OR GPL-2.0-or-later",
- "dependencies": [
- {
- "name": "vcpkg-cmake",
- "host": true
- },
- {
- "name": "vcpkg-cmake-config",
- "host": true
- }
- ],
- "default-features": [
- "brotli",
- "bzip2",
- "png",
- "zlib"
- ],
- "features": {
- "brotli": {
- "description": "Support decompression of WOFF2 streams",
- "dependencies": [
- "brotli"
- ]
- },
- "bzip2": {
- "description": "Support bzip2 compressed fonts.",
- "dependencies": [
- "bzip2"
- ]
- },
- "error-strings": {
- "description": "Enable support for meaningful error descriptions."
- },
- "png": {
- "description": "Support PNG compressed OpenType embedded bitmaps.",
- "dependencies": [
- "libpng"
- ]
- },
- "zlib": {
- "description": "Use zlib instead of internal library for DEFLATE",
- "dependencies": [
- "zlib"
- ]
- }
- }
- }
|