vcpkg.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
  3. "name": "yuzu",
  4. "builtin-baseline": "656fcc6ab2b05c6d999b7eaca717027ac3738f71",
  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-icl",
  16. "boost-intrusive",
  17. "boost-mpl",
  18. "boost-process",
  19. "boost-range",
  20. "boost-spirit",
  21. "boost-test",
  22. "boost-timer",
  23. "boost-variant",
  24. "fmt",
  25. "lz4",
  26. "nlohmann-json",
  27. "zlib",
  28. "zstd"
  29. ],
  30. "features": {
  31. "yuzu-tests": {
  32. "description": "Compile tests",
  33. "dependencies": [ "catch2" ]
  34. },
  35. "dbghelp": {
  36. "description": "Compile Windows crash dump (Minidump) support",
  37. "dependencies": [ "dbghelp" ]
  38. },
  39. "web-service": {
  40. "description": "Enable web services (telemetry, etc.)",
  41. "dependencies": [
  42. {
  43. "name": "openssl",
  44. "platform": "windows"
  45. }
  46. ]
  47. }
  48. },
  49. "overrides": [
  50. {
  51. "name": "catch2",
  52. "version": "3.3.1"
  53. },
  54. {
  55. "name": "fmt",
  56. "version": "10.0.0"
  57. }
  58. ]
  59. }