Add cryptonote_format_utils_basic to android CMakeLists

M committed Sep 16, 2021 at 19:35 UTC f53fc0b30c5e41008dd5a4b80c5f0f89765679aa
1 file changed +5
cw_monero/android/CMakeLists.txt
+5
@@ -91,6 +91,10 @@ add_library(cryptonote_basic STATIC IMPORTED)
91 set_target_properties(cryptonote_basic PROPERTIES IMPORTED_LOCATION
92 ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/monero/libcryptonote_basic.a)
93
94 +add_library(cryptonote_format_utils_basic STATIC IMPORTED)
95 +set_target_properties(cryptonote_format_utils_basic PROPERTIES IMPORTED_LOCATION
96 + ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/monero/libcryptonote_format_utils_basic.a)
97 +
98 add_library(mnemonics STATIC IMPORTED)
99 set_target_properties(mnemonics PROPERTIES IMPORTED_LOCATION
100 ${EXTERNAL_LIBS_DIR}/${ANDROID_ABI}/lib/monero/libmnemonics.a)
@@ -189,6 +193,7 @@ target_link_libraries( cw_monero
193 wallet
194 cryptonote_core
195 cryptonote_basic
196 + cryptonote_format_utils_basic
197 mnemonics
198 ringct
199 ringct_basic