oxen-core/src/wallet3/CMakeLists.txt

31 lines
621 B
CMake
Raw Normal View History

2022-03-29 06:02:42 +02:00
configure_file(version.cpp.in version.cpp @ONLY)
add_library(wallet3
db_schema.cpp
default_daemon_comms.cpp
keyring.cpp
transaction_constructor.cpp
transaction_scanner.cpp
pending_transaction.cpp
output_selection/output_selection.cpp
2021-12-06 23:49:08 +01:00
decoy_selection/decoy_selection.cpp
wallet.cpp
wallet2½.cpp
2022-03-29 06:02:42 +02:00
version.cpp
rpc/command_parser.cpp
rpc/request_handler.cpp
rpc/omq_server.cpp)
target_link_libraries(wallet3
PUBLIC
rpc_common
common
nlohmann_json::nlohmann_json
oxenmq::oxenmq
PRIVATE
cryptonote_protocol
cryptonote_basic
cryptonote_core
extra
SQLiteCpp)