remove depency on readline

https://github.com/moneroexamples/onion-monero-blockchain-explorer/pull/105
This commit is contained in:
moneroexamples 2018-03-09 08:36:21 +08:00
parent 605c6caf28
commit 3a055f9fbd
18 changed files with 193 additions and 82 deletions

View file

@ -28,7 +28,7 @@
# (c) 2014-2016 cpp-ethereum contributors.
#------------------------------------------------------------------------------
set(LIBS common;blocks;cryptonote_basic;cryptonote_core;epee_readline;
set(LIBS common;blocks;cryptonote_basic;cryptonote_core;
cryptonote_protocol;daemonizer;mnemonics;epee;lmdb;device;
blockchain_db;ringct;wallet;cncrypto;easylogging;version;checkpoints)
@ -57,11 +57,12 @@ foreach (l ${LIBS})
endforeach()
#if (EXISTS ${MONERO_BUILD_DIR}/external/easylogging++/libeasylogging.a)
# add_library(easylogging STATIC IMPORTED)
# set_property(TARGET easylogging
# PROPERTY IMPORTED_LOCATION ${MONERO_BUILD_DIR}/external/easylogging++/libeasylogging.a)
#endif()
if (EXISTS ${MONERO_BUILD_DIR}/src/ringct/libringct_basic.a)
add_library(ringct_basic STATIC IMPORTED)
set_property(TARGET ringct_basic
PROPERTY IMPORTED_LOCATION ${MONERO_BUILD_DIR}/src/ringct/libringct_basic.a)
endif()
message(STATUS ${MONERO_SOURCE_DIR}/build)