forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 5
/
vcpkg.json
46 lines (46 loc) · 1.15 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
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"builtin-baseline": "9edb1b8e590cc086563301d735cae4b6e732d2d2",
"overrides":[
{"name": "libevent", "version": "2.1.12#7"},
{"name": "liblzma", "version": "5.4.1#1"}
],
"dependencies": [
"boost-date-time",
"boost-multi-index",
"boost-signals2",
"libevent"
],
"default-features": [
"wallet",
"zeromq",
"tests",
"qt5"
],
"features": {
"wallet": {
"description": "Enable wallet",
"dependencies": [ "berkeleydb", "sqlite3" ]
},
"sqlite": {
"description": "Enable SQLite wallet support",
"dependencies": [ "sqlite3" ]
},
"berkeleydb": {
"description": "Enable Berkeley DB wallet support",
"dependencies": [ "berkeleydb" ]
},
"zeromq": {
"description": "Enable ZMQ notifications",
"dependencies": [ "zeromq" ]
},
"tests": {
"description": "Build test_bitcoin.exe executable",
"dependencies": [ "boost-test" ]
},
"qt5": {
"description": "Build GUI, Qt 5",
"dependencies": [ "qt5-base", "qt5-tools" ]
}
}
}