From 0d047e7defeef6a8e7ba10e6f0748223a53aff18 Mon Sep 17 00:00:00 2001 From: abitmore Date: Mon, 15 Jun 2020 21:03:33 +0000 Subject: [PATCH] Explicitly list cpp files for building wallet lib --- libraries/wallet/CMakeLists.txt | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/libraries/wallet/CMakeLists.txt b/libraries/wallet/CMakeLists.txt index f3b552fdb9..016abb23bf 100644 --- a/libraries/wallet/CMakeLists.txt +++ b/libraries/wallet/CMakeLists.txt @@ -29,7 +29,21 @@ else() DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/api_documentation_standin.cpp ) endif() -file (GLOB SOURCES "*.cpp") +set( SOURCES + operation_printer.cpp + reflect_util.cpp + wallet.cpp + wallet_account.cpp + wallet_api_impl.cpp + wallet_asset.cpp + wallet_builder.cpp + wallet_debug.cpp + wallet_network.cpp + wallet_results.cpp + wallet_sign.cpp + wallet_transfer.cpp + wallet_voting.cpp + ) add_library( graphene_wallet ${SOURCES} ${CMAKE_CURRENT_BINARY_DIR}/api_documentation.cpp ${HEADERS} ) target_link_libraries( graphene_wallet PRIVATE graphene_app graphene_net graphene_chain graphene_utilities fc ${CMAKE_DL_LIBS} ${PLATFORM_SPECIFIC_LIBS} )