0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-01 09:35:52 -05:00

cmake: Add vcpkg manifest file

This commit is contained in:
Hennadii Stepanov 2024-06-04 14:14:49 +01:00
parent 8b6f1c4353
commit 7681746b20
No known key found for this signature in database
GPG key ID: 410108112E7EA81F

51
vcpkg.json Normal file
View file

@ -0,0 +1,51 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"builtin-baseline": "9edb1b8e590cc086563301d735cae4b6e732d2d2",
"overrides":[
{"name": "libevent", "version": "2.1.12#7"},
{"name": "liblzma", "version": "5.4.1#1"}
],
"dependencies": [
"boost-date-time",
"boost-multi-index",
"boost-signals2",
"libevent"
],
"default-features": [
"wallet",
"miniupnpc",
"zeromq",
"tests",
"qt5"
],
"features": {
"wallet": {
"description": "Enable wallet",
"dependencies": [ "berkeleydb", "sqlite3" ]
},
"sqlite": {
"description": "Enable SQLite wallet support",
"dependencies": [ "sqlite3" ]
},
"berkeleydb": {
"description": "Enable Berkeley DB wallet support",
"dependencies": [ "berkeleydb" ]
},
"miniupnpc": {
"description": "Enable UPnP",
"dependencies": [ "miniupnpc" ]
},
"zeromq": {
"description": "Enable ZMQ notifications",
"dependencies": [ "zeromq" ]
},
"tests": {
"description": "Build test_bitcoin.exe executable",
"dependencies": [ "boost-test" ]
},
"qt5": {
"description": "Build GUI, Qt 5",
"dependencies": [ "qt5-base", "qt5-tools" ]
}
}
}