Very, very basic server responses

This commit is contained in:
2025-09-13 19:50:41 +03:00
parent eb5e420d41
commit 172665ed4d
6 changed files with 298 additions and 21 deletions

View File

@@ -5,17 +5,19 @@ project(SimpleHttpServer VERSION 1.0
LANGUAGES C)
add_library(
httpserverlib
STATIC
src/httpserver.h
src/httpserver.c
httpserverlib
STATIC
src/httpserver.h
src/httpserver.c
src/utils/hashmap.c
src/utils/hashmap.h
src/utils/string_builder.c
src/utils/string_builder.h
)
add_executable(
httpserver
app/main.c
httpserver
app/main.c
app/main.h
)