Skip to content

Commit

Permalink
Merge pull request #2198 from bitshares/fix-gitian-ubuntu-cli
Browse files Browse the repository at this point in the history
Explicitly list cpp files for building wallet lib, fix Gitian build
  • Loading branch information
abitmore authored Jun 16, 2020
2 parents 222e6c4 + 0d047e7 commit e22436f
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion libraries/wallet/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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} )
Expand Down

0 comments on commit e22436f

Please sign in to comment.