Initial commit

This commit is contained in:
2025-09-08 09:41:16 +03:00
commit 418d33a6de
5 changed files with 90 additions and 0 deletions

22
CMakeLists.txt Normal file
View File

@@ -0,0 +1,22 @@
cmake_minimum_required(VERSION 3.15...4.0)
project(SimpleHttpServer VERSION 1.0
DESCRIPTION "A simple HTTP server written in C++"
LANGUAGES CXX)
add_library(
httpserverlib
STATIC
src/server.hpp
src/server.cpp
)
target_compile_features(httpserverlib PUBLIC cxx_std_23)
add_executable(
httpserver
app/main.cpp
)
target_link_libraries(httpserver PUBLIC httpserverlib)