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
|
2016-05-28 05:05:51 +00:00
|
|
|
page.h
|
2017-04-28 05:45:30 +00:00
|
|
|
rpccalls.cpp rpccalls.h
|
2017-05-16 05:29:24 +00:00
|
|
|
version.h.in CurrentBlockchainStatus.cpp)
|
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})
|