inital working port of old sdbot from llmtox

This commit is contained in:
2023-12-06 15:12:34 +01:00
commit b6beee1d76
12 changed files with 2164 additions and 0 deletions

16
src/CMakeLists.txt Normal file
View File

@@ -0,0 +1,16 @@
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
add_library(solanaceae_sdbot-webui STATIC
./sd_bot.hpp
./sd_bot.cpp
)
target_compile_features(solanaceae_sdbot-webui PUBLIC cxx_std_17)
target_link_libraries(solanaceae_sdbot-webui PUBLIC
happyhttp
solanaceae_contact
solanaceae_message3
nlohmann_json::nlohmann_json
libsodium
)