http server functional

This commit is contained in:
2025-10-25 12:23:53 -05:00
parent 4631911992
commit 6720d725c2
7 changed files with 24 additions and 0 deletions

View File

@@ -23,6 +23,7 @@ add_subdirectory(external/tomlplusplus)
add_subdirectory(external/duckdb)
add_subdirectory(external/json)
add_subdirectory(external/BLAKE3/c)
add_subdirectory(external/cpp-httplib)
# -----------------------------
# Executables
@@ -40,6 +41,7 @@ set(COMMON_LIBS
duckdb_static
nlohmann_json
blake3
# cpp-httplib
)
# -----------------------------
@@ -52,6 +54,7 @@ set(EXTERNAL_INCLUDES
${CMAKE_CURRENT_SOURCE_DIR}/external/duckdb/src/include
${CMAKE_CURRENT_SOURCE_DIR}/external/json/include/nlohmann
${CMAKE_CURRENT_SOURCE_DIR}/external/BLAKE3/c
${CMAKE_CURRENT_SOURCE_DIR}/external/cpp-httplib
)
# -----------------------------