wallet_api: make this optional but not built by default

It means it can still be built with make -C build/debug wallet_api
but still not DoS us while debugging
This commit is contained in:
moneromooo-monero 2017-12-31 11:14:20 +00:00
parent a0a8706946
commit eb39a3d7d3
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
2 changed files with 4 additions and 2 deletions

View File

@ -126,6 +126,6 @@ if (BUILD_GUI_DEPS)
endif()
install(TARGETS wallet_merged
ARCHIVE DESTINATION ${lib_folder})
add_subdirectory(api)
endif()
add_subdirectory(api)

View File

@ -78,6 +78,8 @@ target_link_libraries(wallet_api
PRIVATE
${EXTRA_LIBRARIES})
set_property(TARGET wallet_api PROPERTY EXCLUDE_FROM_ALL TRUE)
set_property(TARGET obj_wallet_api PROPERTY EXCLUDE_FROM_ALL TRUE)
if(IOS)
set(lib_folder lib-${ARCH})