-
Notifications
You must be signed in to change notification settings - Fork 2
/
vcpkg.json
53 lines (53 loc) · 1.12 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
{
"name": "cachemere",
"version-semver": "0.3.0",
"dependencies": [
{
"name": "abseil",
"version>=": "20220623.1",
"features": [
"cxx17"
]
},
{
"name": "vcpkg-cmake",
"version>=": "2021-02-28",
"host": true,
"$comment": "This transitive dependency needs to be specified explicitly."
},
{
"name": "vcpkg-cmake-config",
"version>=": "2021-02-26",
"host": true,
"$comment": "This transitive dependency needs to be specified explicitly."
}
],
"default-features": [
"boost"
],
"features": {
"boost": {
"description": "Use boost from vcpkg",
"dependencies": [
"boost-accumulators",
"boost-dynamic-bitset",
"boost-hana"
]
},
"tests": {
"description": "The unit tests",
"dependencies": [
"gtest"
]
},
"benchmarks": {
"description": "The accuracy and performance benchmarks",
"dependencies": [
"benchmark",
"gtest",
"tbb"
]
}
},
"builtin-baseline": "3304e4ed22ae8e2a586ec4399c7d933f09475331"
}