onion-wownero-blockchain-ex.../CMakeLists.txt

143 lines
3.8 KiB
CMake
Raw Normal View History

2016-04-12 07:15:33 +00:00
cmake_minimum_required(VERSION 2.8)
2016-04-06 06:53:37 +00:00
2016-04-12 03:31:26 +00:00
#list(INSERT
# CMAKE_MODULE_PATH 0 ${PROJECT_SOURCE_DIR}/cmake)
set(CMAKE_MODULE_PATH
${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
2016-04-06 06:53:37 +00:00
set(PROJECT_NAME
2016-04-15 21:59:39 +00:00
xmrblocks)
2016-04-06 06:53:37 +00:00
2016-04-12 03:31:26 +00:00
2016-04-06 06:53:37 +00:00
project(${PROJECT_NAME})
set(CMAKE_CXX_FLAGS
"${CMAKE_CXX_FLAGS} -std=c++14")
# find boost
find_package(Boost COMPONENTS
system
filesystem
thread
date_time
chrono
regex
serialization
program_options
date_time
REQUIRED)
# set location of monero static libraries
set(MONERO_LIBS_DIR
2016-09-06 10:34:07 +00:00
/opt/monero-dev/libs)
2016-04-06 06:53:37 +00:00
# set location of moneroheaders
set(MONERO_HEADERS_DIR
2016-09-06 10:34:07 +00:00
/opt/monero-dev/headers)
2016-04-06 06:53:37 +00:00
# include monero headers
include_directories(
${MONERO_HEADERS_DIR}/src
${MONERO_HEADERS_DIR}/external
${MONERO_HEADERS_DIR}/contrib/epee/include
${MONERO_HEADERS_DIR}/external/db_drivers/liblmdb)
# get individual monero static libraries
# that are needed in this project
add_library(common STATIC IMPORTED)
set_property(TARGET common PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libcommon.a)
add_library(blocks STATIC IMPORTED)
set_property(TARGET blocks PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libblocks.a)
add_library(crypto STATIC IMPORTED)
set_property(TARGET crypto
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libcrypto.a)
add_library(cryptonote_core STATIC IMPORTED)
set_property(TARGET cryptonote_core
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libcryptonote_core.a)
add_library(cryptonote_protocol STATIC IMPORTED)
set_property(TARGET cryptonote_protocol
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libcryptonote_protocol.a)
2016-04-06 06:53:37 +00:00
add_library(blockchain_db STATIC IMPORTED)
set_property(TARGET blockchain_db
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libblockchain_db.a)
add_library(lmdb STATIC IMPORTED)
set_property(TARGET lmdb
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/liblmdb.a)
2016-09-06 10:34:07 +00:00
add_library(ringct STATIC IMPORTED)
set_property(TARGET ringct
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libringct.a)
2016-04-06 06:53:37 +00:00
2016-09-28 02:21:14 +00:00
add_library(wallet STATIC IMPORTED)
set_property(TARGET wallet
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libwallet.a)
2016-04-06 06:53:37 +00:00
# include boost headers
include_directories(${Boost_INCLUDE_DIRS})
include_directories("ext/mstch/include")
# add ext/ subfolder
add_subdirectory(ext/)
# add src/ subfolder
add_subdirectory(src/)
set(SOURCE_FILES
main.cpp)
2016-04-12 03:31:26 +00:00
#ADD_CUSTOM_TARGET(driver DEPENDS src/templates/index.html)
2016-04-08 06:14:42 +00:00
2016-04-06 06:53:37 +00:00
add_executable(${PROJECT_NAME}
${SOURCE_FILES})
2016-04-12 03:31:26 +00:00
macro(configure_files srcDir destDir)
message(STATUS "Configuring directory ${destDir}")
make_directory(${destDir})
file(GLOB templateFiles RELATIVE ${srcDir} ${srcDir}/*)
foreach(templateFile ${templateFiles})
set(srcTemplatePath ${srcDir}/${templateFile})
if(NOT IS_DIRECTORY ${srcTemplatePath})
message(STATUS "Configuring file ${templateFile}")
configure_file(
${srcTemplatePath}
${destDir}/${templateFile}
@ONLY)
endif(NOT IS_DIRECTORY ${srcTemplatePath})
endforeach(templateFile)
endmacro(configure_files)
configure_files(${CMAKE_CURRENT_SOURCE_DIR}/src/templates ${CMAKE_CURRENT_BINARY_DIR}/templates)
configure_files(${CMAKE_CURRENT_SOURCE_DIR}/src/templates/css ${CMAKE_CURRENT_BINARY_DIR}/templates/css)
2016-04-30 01:35:48 +00:00
configure_files(${CMAKE_CURRENT_SOURCE_DIR}/src/templates/partials ${CMAKE_CURRENT_BINARY_DIR}/templates/partials)
2016-04-12 03:31:26 +00:00
2016-04-08 06:14:42 +00:00
2016-04-06 06:53:37 +00:00
target_link_libraries(${PROJECT_NAME}
myxrm
myext
mstch
2016-09-28 02:21:14 +00:00
wallet
2016-04-06 06:53:37 +00:00
cryptonote_core
cryptonote_protocol
2016-04-06 06:53:37 +00:00
blockchain_db
crypto
blocks
lmdb
2016-09-06 10:34:07 +00:00
ringct
common
2016-04-06 06:53:37 +00:00
${Boost_LIBRARIES}
pthread
unbound
unwind
dl)