CMakeLists.txt updated

This commit is contained in:
moneroexamples 2017-01-17 05:40:07 +08:00
parent 3c442632bc
commit b8b54b36e2
2 changed files with 8 additions and 0 deletions

View File

@ -42,6 +42,7 @@ include_directories(
${MONERO_HEADERS_DIR}/src
${MONERO_HEADERS_DIR}/external
${MONERO_HEADERS_DIR}/contrib/epee/include
${MONERO_HEADERS_DIR}/external/easylogging++
${MONERO_HEADERS_DIR}/external/db_drivers/liblmdb)
if(APPLE)
@ -74,6 +75,10 @@ add_library(mnemonics STATIC IMPORTED)
set_property(TARGET mnemonics
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libmnemonics.a)
add_library(epee STATIC IMPORTED)
set_property(TARGET epee
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libepee.a)
add_library(blockchain_db STATIC IMPORTED)
set_property(TARGET blockchain_db
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libblockchain_db.a)
@ -200,6 +205,7 @@ target_link_libraries(${PROJECT_NAME}
ringct
common
mnemonics
epee
${Boost_LIBRARIES}
pthread
unbound

View File

@ -33,6 +33,8 @@
#include "ringct/rctOps.h"
#include "ringct/rctSigs.h"
#include "easylogging++.h"
#include "common/base58.h"
#include "string_coding.h"