vcpkg.json raw
1 {
2 "$comment": "The builtin-baseline corresponds to 2025.08.27 Release",
3 "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
4 "builtin-baseline": "120deac3062162151622ca4860575a33844ba10b",
5 "dependencies": [
6 "boost-multi-index"
7 ],
8 "default-features": [
9 "qt",
10 "tests",
11 "wallet",
12 "zeromq"
13 ],
14 "features": {
15 "qt": {
16 "description": "Build GUI, Qt 6",
17 "dependencies": [
18 {
19 "name": "qtbase",
20 "default-features": false,
21 "features": [
22 "gui",
23 "network",
24 "png",
25 "testlib",
26 "widgets"
27 ]
28 },
29 "qttools",
30 "libqrencode"
31 ]
32 },
33 "tests": {
34 "description": "Build test_bitcoin.exe executable",
35 "dependencies": [
36 "boost-test"
37 ]
38 },
39 "wallet": {
40 "description": "Enable wallet (SQLite)",
41 "dependencies": [
42 "sqlite3"
43 ]
44 },
45 "zeromq": {
46 "description": "Enable ZMQ notifications",
47 "dependencies": [
48 "zeromq"
49 ]
50 }
51 }
52 }
53