You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmonero/src/CMakeLists.txt

27 lines
496 B

cmake_minimum_required(VERSION 3.2)
project(myxrm)
set(SOURCE_FILES
MicroCore.cpp
tools.cpp
CmdLineOptions.cpp
CurrentBlockchainStatus.cpp
MySqlConnector.cpp
MySqlAccounts.cpp
ssqlses.cpp
YourMoneroRequests.cpp
TxSearch.cpp
rpccalls.cpp
OutputInputIdentification.cpp
version.h.in
BlockchainSetup.cpp
ThreadRAII.cpp)
# make static library called libmyxrm
# that we are going to link to
# in the root CMakeLists.txt file
add_library(myxrm
STATIC
${SOURCE_FILES})