-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvcpkg.json
64 lines (64 loc) · 1.45 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
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "bitar",
"homepage": "https://github.com/ljishen/bitar",
"description": "Bitar is a C++ library to simplify accessing hardware compression/decompression accelerators.",
"builtin-baseline": "223d33be7d3ec6c3d64381ca37f501b8c87dda6a",
"dependencies": [
{
"name": "abseil",
"version>=": "20230125.0",
"features": ["cxx17"]
},
{
"name": "cxxopts",
"version>=": "3.1.0"
},
{
"$explanation": ["Dependency for system-installed Apache Arrow library"],
"name": "curl",
"version>=": "7.88.1",
"default-features": false
},
{
"name": "fmt",
"version>=": "9.1.0#1"
},
{
"name": "magic-enum",
"version>=": "0.8.2"
},
{
"$explanation": [
"Dependency for system-installed Apache Arrow library and DPDK"
],
"name": "openssl"
}
],
"overrides": [
{
"name": "openssl",
"version-string": "1.1.1n#1"
}
],
"features": {
"dpdk": {
"description": "Install Data Plane Development Kit (DPDK) with vcpkg",
"dependencies": [
{
"name": "dpdk",
"version>=": "22.07#1"
}
]
},
"tests": {
"description": "Build the tests",
"dependencies": [
{
"name": "catch2",
"version>=": "3.3.1"
}
]
}
}
}