From ffd29ca6e5b0b72b99c5c0ae2b0b4c4fd38f2659 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Thu, 20 Jul 2023 23:38:46 +0200 Subject: Add top-level CMakeLists.txt --- CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..82d6667 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,11 @@ +cmake_minimum_required(VERSION 3.13.5) +project(slweb C) +add_library(${PROJECT_NAME} + handler.c + html.c + http.c + server.c + wildcard_cmp.c) +add_subdirectory(dynstr) +target_include_directories(${PROJECT_NAME} PUBLIC include) +target_link_libraries(${PROJECT_NAME} PUBLIC dynstr) -- cgit v1.2.3