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

26 lines
436 B
CMake
Raw Normal View History

2016-04-06 06:53:37 +00:00
# first build mstch template library
add_subdirectory("mstch")
# now build myext library from other files
project(myext)
set(SOURCE_HEADERS
minicsv.h
format.h
2016-11-23 23:11:18 +00:00
)
2016-04-06 06:53:37 +00:00
set(SOURCE_FILES
2017-03-13 08:35:45 +00:00
fmt/format.cc
fmt/ostream.cc
2016-11-22 09:34:38 +00:00
date/tz.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(myext
STATIC
${SOURCE_FILES})