vcpkg.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
  3. "name": "yuzu",
  4. "builtin-baseline": "cbf56573a987527b39272e88cbdd11389b78c6e4",
  5. "version": "1.0",
  6. "dependencies": [
  7. "boost-algorithm",
  8. "boost-asio",
  9. "boost-bind",
  10. "boost-config",
  11. "boost-container",
  12. "boost-context",
  13. "boost-crc",
  14. "boost-functional",
  15. "boost-heap",
  16. "boost-icl",
  17. "boost-intrusive",
  18. "boost-mpl",
  19. "boost-process",
  20. "boost-range",
  21. "boost-spirit",
  22. "boost-test",
  23. "boost-timer",
  24. "boost-variant",
  25. "fmt",
  26. "lz4",
  27. "nlohmann-json",
  28. "zlib",
  29. "zstd"
  30. ],
  31. "features": {
  32. "yuzu-tests": {
  33. "description": "Compile tests",
  34. "dependencies": [ "catch2" ]
  35. },
  36. "web-service": {
  37. "description": "Enable web services (telemetry, etc.)",
  38. "dependencies": [
  39. {
  40. "name": "openssl",
  41. "platform": "windows"
  42. }
  43. ]
  44. }
  45. },
  46. "overrides": [
  47. {
  48. "name": "catch2",
  49. "version": "3.3.1"
  50. },
  51. {
  52. "name": "fmt",
  53. "version": "10.0.0"
  54. }
  55. ]
  56. }