mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
first commit
This commit is contained in:
commit
98661d9b67
65 changed files with 16558 additions and 0 deletions
24
ext/CMakeLists.txt
Normal file
24
ext/CMakeLists.txt
Normal file
|
@ -0,0 +1,24 @@
|
|||
# first build mstch template library
|
||||
add_subdirectory("mstch")
|
||||
|
||||
|
||||
# now build myext library from other files
|
||||
project(myext)
|
||||
|
||||
set(SOURCE_HEADERS
|
||||
minicsv.h
|
||||
format.h
|
||||
dateparser.h)
|
||||
|
||||
set(SOURCE_FILES
|
||||
format.cc
|
||||
dateparser.cpp)
|
||||
|
||||
# make static library called libmyxrm
|
||||
# that we are going to link to
|
||||
# in the root CMakeLists.txt file
|
||||
add_library(myext
|
||||
STATIC
|
||||
${SOURCE_FILES})
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue