oxen-core/src/wallet3/CMakeLists.txt
Thomas Winget e65cfb8ab6 wallet3 rpc initial commit
omq rpc intitialization; needs parameters

legacy rpc call definitions, descriptions, boilerplate, and addition
to omq rpc registry
2022-03-28 22:24:29 -04:00

27 lines
557 B
CMake

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
decoy_selection/decoy_selection.cpp
wallet.cpp
wallet2½.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)