This commit is contained in:
Simon Hardt
2021-05-27 15:53:00 +02:00
parent 35d35ec087
commit 7903b0b8c5
15 changed files with 941 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
set(src_files
src/main.cpp
src/api.hpp
src/api.cpp
src/worker.hpp
src/worker.cpp
src/tables.hpp)
add_executable(. ${src_files})
target_link_libraries(.
fmt::fmt
spdlog::spdlog
SOCI::soci_core
SOCI::soci_empty
SOCI::soci_sqlite3
nlohmann_json::nlohmann_json
Boost::boost
${Boost_FILESYSTEM_LIBRARY}
${Boost_SYSTEM_LIBRARY})