Merge pull request #6112

7c1d31b0 build: fix IOS, build blockchain_db and rpc, skip wallet_rpc_server (xiphon)
release-v0.16
Alexander Blair 5 years ago
commit e49a055e89
No known key found for this signature in database
GPG Key ID: C64552D877C32479

@ -113,12 +113,10 @@ add_subdirectory(lmdb)
add_subdirectory(multisig) add_subdirectory(multisig)
add_subdirectory(net) add_subdirectory(net)
add_subdirectory(hardforks) add_subdirectory(hardforks)
if(NOT IOS)
add_subdirectory(blockchain_db) add_subdirectory(blockchain_db)
endif()
add_subdirectory(mnemonics) add_subdirectory(mnemonics)
if(NOT IOS)
add_subdirectory(rpc) add_subdirectory(rpc)
if(NOT IOS)
add_subdirectory(serialization) add_subdirectory(serialization)
endif() endif()
add_subdirectory(wallet) add_subdirectory(wallet)

@ -77,6 +77,7 @@ target_link_libraries(wallet
PRIVATE PRIVATE
${EXTRA_LIBRARIES}) ${EXTRA_LIBRARIES})
if(NOT IOS)
set(wallet_rpc_sources set(wallet_rpc_sources
wallet_rpc_server.cpp) wallet_rpc_server.cpp)
@ -112,7 +113,7 @@ set_property(TARGET wallet_rpc_server
PROPERTY PROPERTY
OUTPUT_NAME "monero-wallet-rpc") OUTPUT_NAME "monero-wallet-rpc")
install(TARGETS wallet_rpc_server DESTINATION bin) install(TARGETS wallet_rpc_server DESTINATION bin)
endif()
# build and install libwallet_merged only if we building for GUI # build and install libwallet_merged only if we building for GUI
if (BUILD_GUI_DEPS) if (BUILD_GUI_DEPS)

Loading…
Cancel
Save