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

25 lines
480 B
CMake
Raw Normal View History

2016-04-06 10:15:09 +01:00
cmake_minimum_required(VERSION 2.8)
2016-04-06 07:53:37 +01:00
project(myxrm)
set(SOURCE_HEADERS
MicroCore.h
tools.h
monero_headers.h
2017-05-16 06:29:24 +01:00
CurrentBlockchainStatus.h)
2016-04-06 07:53:37 +01:00
set(SOURCE_FILES
MicroCore.cpp
tools.cpp
CmdLineOptions.cpp
page.h
rpccalls.cpp rpccalls.h
version.h.in CurrentBlockchainStatus.cpp MempoolStatus.cpp MempoolStatus.h)
2016-04-06 07:53:37 +01: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})