Skip to content

Commit 7681746

Browse files
committed
cmake: Add vcpkg manifest file
1 parent 8b6f1c4 commit 7681746

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

vcpkg.json

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
3+
"builtin-baseline": "9edb1b8e590cc086563301d735cae4b6e732d2d2",
4+
"overrides":[
5+
{"name": "libevent", "version": "2.1.12#7"},
6+
{"name": "liblzma", "version": "5.4.1#1"}
7+
],
8+
"dependencies": [
9+
"boost-date-time",
10+
"boost-multi-index",
11+
"boost-signals2",
12+
"libevent"
13+
],
14+
"default-features": [
15+
"wallet",
16+
"miniupnpc",
17+
"zeromq",
18+
"tests",
19+
"qt5"
20+
],
21+
"features": {
22+
"wallet": {
23+
"description": "Enable wallet",
24+
"dependencies": [ "berkeleydb", "sqlite3" ]
25+
},
26+
"sqlite": {
27+
"description": "Enable SQLite wallet support",
28+
"dependencies": [ "sqlite3" ]
29+
},
30+
"berkeleydb": {
31+
"description": "Enable Berkeley DB wallet support",
32+
"dependencies": [ "berkeleydb" ]
33+
},
34+
"miniupnpc": {
35+
"description": "Enable UPnP",
36+
"dependencies": [ "miniupnpc" ]
37+
},
38+
"zeromq": {
39+
"description": "Enable ZMQ notifications",
40+
"dependencies": [ "zeromq" ]
41+
},
42+
"tests": {
43+
"description": "Build test_bitcoin.exe executable",
44+
"dependencies": [ "boost-test" ]
45+
},
46+
"qt5": {
47+
"description": "Build GUI, Qt 5",
48+
"dependencies": [ "qt5-base", "qt5-tools" ]
49+
}
50+
}
51+
}

0 commit comments

Comments
 (0)