1
0
Fork 0
forked from lthn/blockchain

feat: install includes on android (#524)

This commit is contained in:
Anton Mikhailov 2025-05-29 14:20:47 +04:00 committed by GitHub
parent 8a91bccea3
commit 99bcf712df
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -153,6 +153,9 @@ if(CMAKE_SYSTEM_NAME STREQUAL "iOS")
elseif(CMAKE_SYSTEM_NAME STREQUAL "Android")
install(TARGETS wallet currency_core crypto common zlibstatic DESTINATION "${CMAKE_ANDROID_ARCH_ABI}/lib")
message("Generating install for Android")
file(GLOB WALLET_INCLUDES wallet/*.h)
install(FILES ${WALLET_INCLUDES} DESTINATION "${CMAKE_INSTALL_PREFIX}/include")
return()
endif()