Files
bitcoin/vcpkg.json
Hennadii Stepanov e2bf51543a build, msvc: Disable default features of the sqlite3 package
At the current builtin baseline, the only default feature is `json1`,
which enables SQLite's JSON functionality. Bitcoin Core does not use
it, and the depends build explicitly omits it with `-DSQLITE_OMIT_JSON`.
2026-08-10 23:26:01 +01:00

56 lines
1.2 KiB
JSON

{
"$comment": "The builtin-baseline corresponds to 2026-07-29 Release",
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"builtin-baseline": "9e593bb18ea69cc5095e012465dcd675a822ed0d",
"dependencies": [
"boost-multi-index"
],
"default-features": [
"qt",
"tests",
"wallet",
"zeromq"
],
"features": {
"qt": {
"description": "Build GUI, Qt 6",
"dependencies": [
{
"name": "qtbase",
"default-features": false,
"features": [
"gui",
"network",
"png",
"testlib",
"widgets"
]
},
"qttools",
"libqrencode"
]
},
"tests": {
"description": "Build test_bitcoin.exe executable",
"dependencies": [
"boost-test"
]
},
"wallet": {
"description": "Enable wallet (SQLite)",
"dependencies": [
{
"name": "sqlite3",
"default-features": false
}
]
},
"zeromq": {
"description": "Enable ZMQ notifications",
"dependencies": [
"zeromq"
]
}
}
}