mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
Fix: monero_crypto_amd64_64_24k_generate_subaddress_public_key
https://github.com/moneroexamples/onion-monero-blockchain-explorer/issues/215#issuecomment-680397635
This commit is contained in:
parent
4c59750ed2
commit
09653279d1
2 changed files with 24 additions and 8 deletions
|
@ -29,7 +29,7 @@
|
|||
#------------------------------------------------------------------------------
|
||||
|
||||
set(LIBS common;blocks;cryptonote_basic;cryptonote_core;multisig;
|
||||
cryptonote_protocol;daemonizer;mnemonics;epee;lmdb;device;
|
||||
cryptonote_protocol;daemonizer;mnemonics;epee;lmdb;device;wallet-crypto;
|
||||
blockchain_db;ringct;wallet;cncrypto;easylogging;version;
|
||||
checkpoints;randomx;hardforks;miniupnpc)
|
||||
|
||||
|
@ -45,7 +45,7 @@ foreach (l ${LIBS})
|
|||
find_library(Xmr_${L}_LIBRARY
|
||||
NAMES ${l}
|
||||
PATHS ${CMAKE_LIBRARY_PATH}
|
||||
PATH_SUFFIXES "/src/${l}" "/src/" "/external/db_drivers/lib${l}" "/lib" "/src/crypto" "/contrib/epee/src" "/external/easylogging++/" "/external/${l}" "external/miniupnp/miniupnpc"
|
||||
PATH_SUFFIXES "/src/${l}" "/src/" "/external/db_drivers/lib${l}" "/lib" "/src/crypto" "/src/crypto/wallet" "/contrib/epee/src" "/external/easylogging++/" "/external/${l}" "external/miniupnp/miniupnpc"
|
||||
NO_DEFAULT_PATH
|
||||
)
|
||||
|
||||
|
@ -53,8 +53,10 @@ foreach (l ${LIBS})
|
|||
|
||||
message(STATUS FindMonero " Xmr_${L}_LIBRARIES ${Xmr_${L}_LIBRARY}")
|
||||
|
||||
add_library(${l} STATIC IMPORTED)
|
||||
set_property(TARGET ${l} PROPERTY IMPORTED_LOCATION ${Xmr_${L}_LIBRARIES})
|
||||
if(NOT "${Xmr_${L}_LIBRARIES}" STREQUAL "${Xmr_${L}_LIBRARY-NOTFOUND}")
|
||||
add_library(${l} STATIC IMPORTED)
|
||||
set_property(TARGET ${l} PROPERTY IMPORTED_LOCATION ${Xmr_${L}_LIBRARIES})
|
||||
endif()
|
||||
|
||||
endforeach()
|
||||
|
||||
|
@ -72,6 +74,7 @@ message(STATUS ${MONERO_SOURCE_DIR}/build)
|
|||
include_directories(
|
||||
${MONERO_SOURCE_DIR}/src
|
||||
${MONERO_SOURCE_DIR}/src/crypto
|
||||
${MONERO_SOURCE_DIR}/src/crypto/wallet
|
||||
${MONERO_SOURCE_DIR}/external
|
||||
${MONERO_SOURCE_DIR}/external/randomx/src
|
||||
${MONERO_SOURCE_DIR}/build
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue