HttpServer/CMakeLists.txt

11 lines
198 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)
add_executable(HttpServer main.c
handle_client.c
handle_client.h
util.c
util.h)