-
Notifications
You must be signed in to change notification settings - Fork 25
/
vcpkg.json
96 lines (96 loc) · 2.8 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"builtin-baseline": "b4f29c54450ddfc7efd2989cb9d32158ae291b40",
"dependencies": [
"protobuf",
{
"name": "rapidjson",
"version>=": "2020-09-14#2"
},
"optional-lite"
],
"features": {
"libhttpclient-ws": {
"description": "Websockets library that delegates to other implementations.",
"supports": "windows | android",
"dependencies": [
{
"name": "websocketpp",
"default-features": false,
"platform": "windows"
},
{
"name": "asio",
"platform": "windows"
},
{
"name": "openssl",
"platform": "windows"
}
]
},
"libhttpclient-http": {
"description": "HTTP library that delegates to other implementations.",
"supports": "windows | android | osx | ios | linux"
},
"wslay": {
"description": "Websockets library decoupled from IO and handshakes.",
"dependencies": [
{
"name": "wslay"
}
],
"supports": "osx | ios | linux | android"
},
"logs": {
"description": "Whether or not logs are enabled."
},
"curl": {
"description": "The libcurl networking library.",
"dependencies": [
{
"name": "curl",
"default-features": false,
"features": [
"ssl"
]
}
]
},
"libcxx": {
"description": "An alternative C++ standard library, used by Unreal Engine.",
"dependencies": [
{
"name": "llvm",
"default-features": false,
"features": [
"libcxx"
],
"platform": "linux"
}
]
},
"grpc": {
"description": "The grpc networking protocol.",
"dependencies": [
"grpc"
]
},
"cpprestsdk": {
"description": "Maintenance-mode HTTP library.",
"dependencies": [
{
"name": "cpprestsdk",
"default-features": false,
"features": [
"websockets"
],
"platform": "android"
}
],
"supports": "android"
}
},
"overrides": [
{ "name": "curl", "version": "8.0.1" }
]
}