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
|
{
"name": "vcpkg-ci-boost",
"version": "1",
"description": "Boost features testing within CI.",
"dependencies": [
"boost",
{
"name": "boost",
"default-features": false,
"features": [
"mpi"
],
"platform": "!staticcrt & !android & !(arm & windows) & !uwp"
},
{
"name": "boost-asio",
"default-features": false,
"features": [
"ssl"
]
},
{
"name": "boost-fiber",
"default-features": false,
"features": [
"numa"
],
"platform": "!uwp & !arm & !emscripten"
},
{
"name": "boost-locale",
"default-features": false,
"features": [
"icu"
],
"platform": "!uwp"
},
{
"name": "boost-mpi",
"default-features": false,
"features": [
"python3"
],
"platform": "!staticcrt & !static & !android & !(arm & windows) & !uwp"
},
{
"name": "boost-odeint",
"default-features": false,
"features": [
"mpi"
],
"platform": "!staticcrt & !android & !(windows & arm) & !uwp"
},
{
"name": "boost-python",
"default-features": false,
"platform": "!emscripten & !ios & !android & !uwp"
},
{
"name": "boost-regex",
"default-features": false,
"features": [
"icu"
]
}
]
}
|