Files
Fletcher Dunn 91465451d0 vcpkg fixes
vcpkg manigest:
- Add vcpkg-cmake as dependency of this project
- Don't support bcrypt as vcpkg feature.  Nobody using vcpkg wants bcrypt,
  so this is just a trap.

Local/test overlay port:
- Fix how we are setting SOURCE_PATH
- Add symlink to out vcpkg.json manifest, since a port needs one

Chat example built using vcpkg:
- Add GNS_LINK_STATIC option to vcpkg_example_chat project so I can test
  an app linking against static or dynamic lib.
2026-05-28 14:41:44 -07:00

39 lines
1.1 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
"name": "gamenetworkingsockets",
"version-string": "1.5.1",
"description": "A basic transport layer for games.",
"homepage": "https://github.com/ValveSoftware/GameNetworkingSockets",
"builtin-baseline": "522253caf47268c1724f486a035e927a42a90092",
"dependencies": [
"protobuf",
"openssl",
{ "name": "vcpkg-cmake", "host": true },
{ "name": "vcpkg-cmake-config", "host": true }
],
"default-features": [ "openssl" ],
"features": {
"openssl": {
"description": "Use OpenSSL as the crypto provider. This is the default.",
"dependencies": [ "openssl" ]
},
"libsodium": {
"description": "Use libsodium as the crypto provider.",
"dependencies": [ "libsodium" ]
},
"webrtc": {
"description": "Compiles WebRTC support for P2P.",
"dependencies": [ "abseil" ]
},
"examples": {
"description": "Build the examples."
},
"tests": {
"description": "Build the tests."
},
"tools": {
"description": "Build cert management tool."
}
}
}