update to current monero master branch

master
moneroexamples 3 years ago
parent 6d7938566d
commit 369787fb86

@ -138,12 +138,13 @@ set(LIBRARIES
myext myext
mstch mstch
wallet wallet
blockchain_db
device
${WALLET_CRYPTO}
cryptonote_core cryptonote_core
cryptonote_protocol
cryptonote_basic cryptonote_basic
cryptonote_protocol
cryptonote_format_utils_basic
blockchain_db
device
${WALLET_CRYPTO}
multisig multisig
daemonizer daemonizer
blocks blocks

@ -67,6 +67,13 @@ if (EXISTS ${MONERO_BUILD_DIR}/src/ringct/libringct_basic.a)
PROPERTY IMPORTED_LOCATION ${MONERO_BUILD_DIR}/src/ringct/libringct_basic.a) PROPERTY IMPORTED_LOCATION ${MONERO_BUILD_DIR}/src/ringct/libringct_basic.a)
endif() endif()
if (EXISTS ${MONERO_BUILD_DIR}/src/cryptonote_basic/libcryptonote_format_utils_basic.a)
message(STATUS FindMonero " found libcryptonote_format_utils_basic.a")
add_library(cryptonote_format_utils_basic STATIC IMPORTED)
set_property(TARGET cryptonote_format_utils_basic
PROPERTY IMPORTED_LOCATION ${MONERO_BUILD_DIR}/src/cryptonote_basic/libcryptonote_format_utils_basic.a)
endif()
message(STATUS ${MONERO_SOURCE_DIR}/build) message(STATUS ${MONERO_SOURCE_DIR}/build)

Loading…
Cancel
Save