mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
23 lines
411 B
CMake
23 lines
411 B
CMake
# first build mstch template library
|
|
add_subdirectory("mstch")
|
|
|
|
|
|
# now build myext library from other files
|
|
project(myext)
|
|
|
|
set(SOURCE_HEADERS
|
|
minicsv.h
|
|
fmt/format.h)
|
|
|
|
set(SOURCE_FILES
|
|
fmt/format.cc
|
|
fmt/ostream.cc)
|
|
|
|
# make static library called libmyxrm
|
|
# that we are going to link to
|
|
# in the root CMakeLists.txt file
|
|
add_library(myext
|
|
STATIC
|
|
${SOURCE_FILES})
|
|
|
|
|