initial release

This commit is contained in:
civ
2026-07-05 18:11:23 +07:00
commit 8fb29dac70
2105 changed files with 499091 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# cpp-httplib: HTTP server library (no SSL, behind reverse proxy in prod)
add_library(httplib STATIC httplib.cpp)
target_include_directories(httplib PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
# suppress warnings in third-party code
if(MSVC)
target_compile_options(httplib PRIVATE /w)
else()
target_compile_options(httplib PRIVATE -w)
endif()
if(WIN32)
target_link_libraries(httplib PRIVATE ws2_32)
endif()