vcpkg.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/master/docs/vcpkg.schema.json",
  3. "name": "msdfgen",
  4. "version": "1.12.1",
  5. "default-features": [
  6. "extensions",
  7. "geometry-preprocessing",
  8. "standalone"
  9. ],
  10. "features": {
  11. "openmp": {
  12. "description": "Parallelization of the core algorithm via the OpenMP framework"
  13. },
  14. "extensions": {
  15. "description": "Extended functionality that depends on external libraries - loading fonts and SVG files, generating PNG images",
  16. "dependencies": [
  17. "freetype",
  18. "tinyxml2",
  19. "libpng"
  20. ]
  21. },
  22. "geometry-preprocessing": {
  23. "description": "Preprocessing of non-compliant vector geometry via the Skia library",
  24. "dependencies": [ {
  25. "name": "msdfgen",
  26. "default-features": false,
  27. "features": [ "extensions" ]
  28. }, {
  29. "name": "skia",
  30. "default-features": false,
  31. "version>=": "0.36.0#3"
  32. } ]
  33. },
  34. "standalone": {
  35. "description": "Build a command line utility that wraps the library's functionality"
  36. }
  37. }
  38. }