vcpkg.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "freetype",
  3. "version": "2.12.1",
  4. "port-version": 2,
  5. "description": "A library to render fonts.",
  6. "homepage": "https://www.freetype.org/",
  7. "license": "FTL OR GPL-2.0-or-later",
  8. "dependencies": [
  9. {
  10. "name": "vcpkg-cmake",
  11. "host": true
  12. },
  13. {
  14. "name": "vcpkg-cmake-config",
  15. "host": true
  16. }
  17. ],
  18. "default-features": [
  19. "brotli",
  20. "bzip2",
  21. "png",
  22. "zlib"
  23. ],
  24. "features": {
  25. "brotli": {
  26. "description": "Support decompression of WOFF2 streams",
  27. "dependencies": [
  28. "brotli"
  29. ]
  30. },
  31. "bzip2": {
  32. "description": "Support bzip2 compressed fonts.",
  33. "dependencies": [
  34. "bzip2"
  35. ]
  36. },
  37. "error-strings": {
  38. "description": "Enable support for meaningful error descriptions."
  39. },
  40. "png": {
  41. "description": "Support PNG compressed OpenType embedded bitmaps.",
  42. "dependencies": [
  43. "libpng"
  44. ]
  45. },
  46. "zlib": {
  47. "description": "Use zlib instead of internal library for DEFLATE",
  48. "dependencies": [
  49. "zlib"
  50. ]
  51. }
  52. }
  53. }