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

34 lines
576 B
CMake
Raw Normal View History

2021-03-27 11:41:31 +00:00
cmake_minimum_required(VERSION 3.0.2)
2016-04-06 06:53:37 +00:00
project(myxrm)
set(SOURCE_HEADERS
MicroCore.h
tools.h
monero_headers.h
2017-05-16 05:29:24 +00:00
CurrentBlockchainStatus.h)
2016-04-06 06:53:37 +00:00
set(SOURCE_FILES
MicroCore.cpp
tools.cpp
CmdLineOptions.cpp
page.h
rpccalls.cpp rpccalls.h
2019-10-05 00:16:07 +00:00
version.h.in
CurrentBlockchainStatus.cpp
MempoolStatus.cpp
MempoolStatus.h)
add_subdirectory(crypto)
2016-04-06 06:53:37 +00:00
# make static library called libmyxrm
# that we are going to link to
# in the root CMakeLists.txt file
add_library(myxrm
STATIC
${SOURCE_FILES})
2019-10-05 00:16:07 +00:00
target_link_libraries(myxrm mycrypto)