/ vcpkg.json
vcpkg.json
 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      "boost-signals2",
 8      "libevent"
 9    ],
10    "default-features": [
11      "qt",
12      "tests",
13      "wallet",
14      "zeromq"
15    ],
16    "features": {
17      "qt": {
18        "description": "Build GUI, Qt 6",
19        "dependencies": [
20          {
21            "name": "qtbase",
22            "default-features": false,
23            "features": [
24              "gui",
25              "network",
26              "png",
27              "testlib",
28              "widgets"
29            ]
30          },
31          "qttools",
32          "libqrencode"
33        ]
34      },
35      "tests": {
36        "description": "Build test_bitcoin.exe executable",
37        "dependencies": [
38          "boost-test"
39        ]
40      },
41      "wallet": {
42        "description": "Enable wallet (SQLite)",
43        "dependencies": [
44          "sqlite3"
45        ]
46      },
47      "zeromq": {
48        "description": "Enable ZMQ notifications",
49        "dependencies": [
50          "zeromq"
51        ]
52      }
53    },
54    "overrides": [
55      {
56        "$comment": "Newer unreleased libevent versions cause https://github.com/bitcoin/bitcoin/issues/30096",
57        "name": "libevent",
58        "version": "2.1.12#7"
59      }
60    ]
61  }