oxen-core/src/sqlitedb/CMakeLists.txt
Sean Darcy d7992b5940
Logging Refactor
This replaces the current epee logging system with our oxen::log
library. It replaces the easylogging library with spdlog, removes the
macros and replaces with functions and standardises how we call the
logs.
2022-10-17 13:41:10 -03:00

15 lines
179 B
CMake

add_library(sqlitedb
database.cpp)
target_link_libraries(sqlitedb
PUBLIC
epee
SQLiteCpp
common
PRIVATE
SQLite::SQLite3
logging
fmt::fmt
extra)