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

24 lines
397 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
)
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)
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})