HttpServer/CMakeLists.txt

11 lines
218 B
CMake
Raw Normal View History

2024-06-24 20:04:27 +01:00
cmake_minimum_required(VERSION 3.28)
project(HttpServer C)
set(CMAKE_C_STANDARD 23)
2024-06-25 16:27:41 +01:00
add_executable(HttpServer src/main.c
src/handle_client.c
src/handle_client.h
src/util.c
src/util.h)