forked from firoorg/firo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright (c) 2023-present The Bitcoin Core developers | ||
# Distributed under the MIT software license, see the accompanying | ||
# file COPYING or https://opensource.org/license/mit/. | ||
|
||
# Wallet functionality used by bitcoind and bitcoin-wallet executables. | ||
add_library(bitcoin_wallet STATIC EXCLUDE_FROM_ALL | ||
authhelper.cpp | ||
bip39.cpp | ||
crypter.cpp | ||
db.cpp | ||
lelantusjoinsplitbuilder.cpp | ||
mnemoniccontainer.cpp | ||
rpcdump.cpp | ||
rpcwallet.cpp | ||
sigmaspendbuilder.cpp | ||
txbuilder.cpp | ||
wallet.cpp | ||
walletdb.cpp | ||
walletexcept.cpp | ||
) | ||
|
||
target_link_libraries(bitcoin_wallet | ||
PRIVATE | ||
core_interface | ||
bitcoin_common | ||
univalue | ||
Boost::headers | ||
$<TARGET_NAME_IF_EXISTS:USDT::headers> | ||
) | ||
|
||
# Firo only supports BDB for wallet storage. | ||
target_sources(bitcoin_wallet PRIVATE bdb.cpp salvage.cpp) | ||
target_link_libraries(bitcoin_wallet PUBLIC BerkeleyDB::BerkeleyDB) |