forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 4
/
vcpkg.json
65 lines (65 loc) · 1.42 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
{
"$comment": "The builtin-baseline corresponds to 2024.09.30 Release",
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"builtin-baseline": "c82f74667287d3dc386bce81e44964370c91a289",
"dependencies": [
"boost-date-time",
"boost-multi-index",
"boost-signals2",
"libevent"
],
"default-features": [
"qt5",
"tests",
"wallet",
"zeromq"
],
"features": {
"berkeleydb": {
"description": "Enable Berkeley DB wallet support",
"dependencies": [
"berkeleydb"
]
},
"qt5": {
"description": "Build GUI, Qt 5",
"dependencies": [
"qt5-base",
"qt5-tools",
"libqrencode"
]
},
"sqlite": {
"description": "Enable SQLite wallet support",
"dependencies": [
"sqlite3"
]
},
"tests": {
"description": "Build test_bitcoin.exe executable",
"dependencies": [
"boost-test"
]
},
"wallet": {
"description": "Enable wallet",
"dependencies": [
"berkeleydb",
"sqlite3"
]
},
"zeromq": {
"description": "Enable ZMQ notifications",
"dependencies": [
"zeromq"
]
}
},
"overrides": [
{
"$comment": "Newer unreleased libevent versions cause https://github.com/bitcoin/bitcoin/issues/30096",
"name": "libevent",
"version": "2.1.12#7"
}
]
}