Skip to content

Commit 9a0734d

Browse files
committed
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.
1 parent 97b790e commit 9a0734d

File tree

1 file changed

+43
-23
lines changed

1 file changed

+43
-23
lines changed

vcpkg.json

Lines changed: 43 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,66 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
33
"builtin-baseline": "9edb1b8e590cc086563301d735cae4b6e732d2d2",
4-
"overrides":[
5-
{"name": "libevent", "version": "2.1.12#7"},
6-
{"name": "liblzma", "version": "5.4.1#1"}
7-
],
84
"dependencies": [
95
"boost-date-time",
106
"boost-multi-index",
117
"boost-signals2",
128
"libevent"
139
],
1410
"default-features": [
15-
"wallet",
16-
"zeromq",
11+
"qt5",
1712
"tests",
18-
"qt5"
13+
"wallet",
14+
"zeromq"
1915
],
2016
"features": {
21-
"wallet": {
22-
"description": "Enable wallet",
23-
"dependencies": [ "berkeleydb", "sqlite3" ]
17+
"berkeleydb": {
18+
"description": "Enable Berkeley DB wallet support",
19+
"dependencies": [
20+
"berkeleydb"
21+
]
22+
},
23+
"qt5": {
24+
"description": "Build GUI, Qt 5",
25+
"dependencies": [
26+
"qt5-base",
27+
"qt5-tools"
28+
]
2429
},
2530
"sqlite": {
2631
"description": "Enable SQLite wallet support",
27-
"dependencies": [ "sqlite3" ]
32+
"dependencies": [
33+
"sqlite3"
34+
]
2835
},
29-
"berkeleydb": {
30-
"description": "Enable Berkeley DB wallet support",
31-
"dependencies": [ "berkeleydb" ]
36+
"tests": {
37+
"description": "Build test_bitcoin.exe executable",
38+
"dependencies": [
39+
"boost-test"
40+
]
41+
},
42+
"wallet": {
43+
"description": "Enable wallet",
44+
"dependencies": [
45+
"berkeleydb",
46+
"sqlite3"
47+
]
3248
},
3349
"zeromq": {
3450
"description": "Enable ZMQ notifications",
35-
"dependencies": [ "zeromq" ]
36-
},
37-
"tests": {
38-
"description": "Build test_bitcoin.exe executable",
39-
"dependencies": [ "boost-test" ]
51+
"dependencies": [
52+
"zeromq"
53+
]
54+
}
55+
},
56+
"overrides": [
57+
{
58+
"name": "libevent",
59+
"version": "2.1.12#7"
4060
},
41-
"qt5": {
42-
"description": "Build GUI, Qt 5",
43-
"dependencies": [ "qt5-base", "qt5-tools" ]
61+
{
62+
"name": "liblzma",
63+
"version": "5.4.1#1"
4464
}
45-
}
65+
]
4666
}

0 commit comments

Comments
 (0)