-
Notifications
You must be signed in to change notification settings - Fork 620
/
vcpkg.json
32 lines (32 loc) · 921 Bytes
/
vcpkg.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
"name": "gamenetworkingsockets",
"version-string": "1.4.0",
"description": "A basic transport layer for games.",
"homepage": "https://github.com/ValveSoftware/GameNetworkingSockets",
"dependencies": [ "protobuf", "openssl" ],
"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."
}
}
}