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

25 lines
480 B
CMake
Raw Normal View History

2016-04-06 09:15:09 +00:00
cmake_minimum_required(VERSION 2.8)
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
version.h.in CurrentBlockchainStatus.cpp MempoolStatus.cpp MempoolStatus.h)
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})