mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-24 18:23:26 -03:00
build, msvc: Reorder keys in vcpkg.json
This change ensures that any further manipulation of `vcpkg.json` via the `vcpkg` command will produce minimal diffs.
This commit is contained in:
parent
97b790e844
commit
9a0734df5f
1 changed files with 46 additions and 26 deletions
72
vcpkg.json
72
vcpkg.json
|
@ -1,10 +1,6 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
|
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
|
||||||
"builtin-baseline": "9edb1b8e590cc086563301d735cae4b6e732d2d2",
|
"builtin-baseline": "9edb1b8e590cc086563301d735cae4b6e732d2d2",
|
||||||
"overrides":[
|
|
||||||
{"name": "libevent", "version": "2.1.12#7"},
|
|
||||||
{"name": "liblzma", "version": "5.4.1#1"}
|
|
||||||
],
|
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"boost-date-time",
|
"boost-date-time",
|
||||||
"boost-multi-index",
|
"boost-multi-index",
|
||||||
|
@ -12,35 +8,59 @@
|
||||||
"libevent"
|
"libevent"
|
||||||
],
|
],
|
||||||
"default-features": [
|
"default-features": [
|
||||||
"wallet",
|
"qt5",
|
||||||
"zeromq",
|
|
||||||
"tests",
|
"tests",
|
||||||
"qt5"
|
"wallet",
|
||||||
|
"zeromq"
|
||||||
],
|
],
|
||||||
"features": {
|
"features": {
|
||||||
"wallet": {
|
|
||||||
"description": "Enable wallet",
|
|
||||||
"dependencies": [ "berkeleydb", "sqlite3" ]
|
|
||||||
},
|
|
||||||
"sqlite": {
|
|
||||||
"description": "Enable SQLite wallet support",
|
|
||||||
"dependencies": [ "sqlite3" ]
|
|
||||||
},
|
|
||||||
"berkeleydb": {
|
"berkeleydb": {
|
||||||
"description": "Enable Berkeley DB wallet support",
|
"description": "Enable Berkeley DB wallet support",
|
||||||
"dependencies": [ "berkeleydb" ]
|
"dependencies": [
|
||||||
},
|
"berkeleydb"
|
||||||
"zeromq": {
|
]
|
||||||
"description": "Enable ZMQ notifications",
|
|
||||||
"dependencies": [ "zeromq" ]
|
|
||||||
},
|
|
||||||
"tests": {
|
|
||||||
"description": "Build test_bitcoin.exe executable",
|
|
||||||
"dependencies": [ "boost-test" ]
|
|
||||||
},
|
},
|
||||||
"qt5": {
|
"qt5": {
|
||||||
"description": "Build GUI, Qt 5",
|
"description": "Build GUI, Qt 5",
|
||||||
"dependencies": [ "qt5-base", "qt5-tools" ]
|
"dependencies": [
|
||||||
|
"qt5-base",
|
||||||
|
"qt5-tools"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"sqlite": {
|
||||||
|
"description": "Enable SQLite wallet support",
|
||||||
|
"dependencies": [
|
||||||
|
"sqlite3"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"tests": {
|
||||||
|
"description": "Build test_bitcoin.exe executable",
|
||||||
|
"dependencies": [
|
||||||
|
"boost-test"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"wallet": {
|
||||||
|
"description": "Enable wallet",
|
||||||
|
"dependencies": [
|
||||||
|
"berkeleydb",
|
||||||
|
"sqlite3"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"zeromq": {
|
||||||
|
"description": "Enable ZMQ notifications",
|
||||||
|
"dependencies": [
|
||||||
|
"zeromq"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"overrides": [
|
||||||
|
{
|
||||||
|
"name": "libevent",
|
||||||
|
"version": "2.1.12#7"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "liblzma",
|
||||||
|
"version": "5.4.1#1"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue