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

10
external/happyhttp/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
add_library(happyhttp STATIC
./happyhttp/happyhttp.h
./happyhttp/happyhttp.cpp
)
target_include_directories(happyhttp PUBLIC .)
target_compile_features(happyhttp PUBLIC cxx_std_11)