mirror of
https://github.com/monero-project/monero.git
synced 2024-12-23 12:09:54 +00:00
Merge pull request #6112
7c1d31b0
build: fix IOS, build blockchain_db and rpc, skip wallet_rpc_server (xiphon)
This commit is contained in:
commit
e49a055e89
2 changed files with 35 additions and 36 deletions
|
@ -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…
Reference in a new issue