vcpkg.json 594 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "spdlog",
  3. "version-semver": "1.10.0",
  4. "port-version": 1,
  5. "description": "Very fast, header only, C++ logging library",
  6. "homepage": "https://github.com/gabime/spdlog",
  7. "license": "MIT",
  8. "dependencies": [
  9. "fmt",
  10. {
  11. "name": "vcpkg-cmake",
  12. "host": true
  13. },
  14. {
  15. "name": "vcpkg-cmake-config",
  16. "host": true
  17. }
  18. ],
  19. "features": {
  20. "benchmark": {
  21. "description": "Use google benchmark",
  22. "dependencies": [
  23. "benchmark"
  24. ]
  25. },
  26. "wchar": {
  27. "description": "Build with wchar_t (Windows only)"
  28. }
  29. }
  30. }