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

38 lines
770 B

cmake_minimum_required(VERSION 3.2)
project(myxrm)
set(SOURCE_FILES
CmdLineOptions.cpp
CurrentBlockchainStatus.cpp
db/MySqlConnector.cpp
db/MySqlAccounts.cpp
db/ssqlses.cpp
OpenMoneroRequests.cpp
TxSearch.cpp
RPCCalls.cpp
omversion.h.in
BlockchainSetup.cpp
ThreadRAII.cpp
db/MysqlPing.cpp
TxUnlockChecker.cpp
utils.cpp
RandomOutputs.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})
target_include_monero_directories(myxrm)
target_include_directories(myxrm PRIVATE "xmregcore")
#target_include_directories(myxmr
# PUBLIC
#${MONERO_SOURCE_DIR}/contrib/epee/include)