blob: 82d6667f4d1e7ece7b527c71bef9c14b8f14ccd5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
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)
|