-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathvcpkg.json
More file actions
63 lines (63 loc) · 1.28 KB
/
vcpkg.json
File metadata and controls
63 lines (63 loc) · 1.28 KB
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
{
"name": "ziti",
"version-semver": "1.0.0",
"description": [
"using vcpkg baseline: 2026.02.27"
],
"builtin-baseline": "62159a45e18f3a9ac0548628dcaf74fcb60c6ff9",
"overrides": [
{
"name": "libsodium",
"version": "1.0.20",
"port-version": 3,
"$comment": "1.0.21 breaks on linux-arm64 so we're sticking with 1.0.20 until fix released and available in vcpkg"
}
],
"dependencies": [
"libuv",
{
"name": "openssl",
"platform": "!windows & !mingw",
"$comment": "use windows crypto on windows platforms"
},
"zlib",
"llhttp",
"libsodium",
"json-c",
"stc",
"protobuf-c",
{
"name": "pkgconf",
"host": true,
"platform": "windows"
}
],
"features": {
"test": {
"description": "Dependencies for testing",
"dependencies": [
{
"version>=": "3.3.1",
"name": "catch2"
}
]
},
"samples": {
"description": "Dependencies for samples",
"dependencies": [
{
"name": "cli11"
}
]
},
"dev-features": {
"description": "features for development",
"dependencies": [
{
"name": "ziti",
"features": [ "test", "samples" ]
}
]
}
}
}