Skip to content

Commit e22436f

Browse files
authored
Merge pull request #2198 from bitshares/fix-gitian-ubuntu-cli
Explicitly list cpp files for building wallet lib, fix Gitian build
2 parents 222e6c4 + 0d047e7 commit e22436f

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

libraries/wallet/CMakeLists.txt

+15-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,21 @@ else()
2929
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/api_documentation_standin.cpp )
3030
endif()
3131

32-
file (GLOB SOURCES "*.cpp")
32+
set( SOURCES
33+
operation_printer.cpp
34+
reflect_util.cpp
35+
wallet.cpp
36+
wallet_account.cpp
37+
wallet_api_impl.cpp
38+
wallet_asset.cpp
39+
wallet_builder.cpp
40+
wallet_debug.cpp
41+
wallet_network.cpp
42+
wallet_results.cpp
43+
wallet_sign.cpp
44+
wallet_transfer.cpp
45+
wallet_voting.cpp
46+
)
3347

3448
add_library( graphene_wallet ${SOURCES} ${CMAKE_CURRENT_BINARY_DIR}/api_documentation.cpp ${HEADERS} )
3549
target_link_libraries( graphene_wallet PRIVATE graphene_app graphene_net graphene_chain graphene_utilities fc ${CMAKE_DL_LIBS} ${PLATFORM_SPECIFIC_LIBS} )

0 commit comments

Comments
 (0)