diff options
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..f233ede --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,18 @@ +cmake_minimum_required(VERSION 3.13) +project(slcl) +add_executable(${PROJECT_NAME} + auth.c + base64.c + handler.c + html.c + http.c + jwt.c + main.c + page.c + server.c +) +target_compile_options(${PROJECT_NAME} PRIVATE -Wall) +add_subdirectory(dynstr) +find_package(cJSON 1.0 REQUIRED) +find_package(OpenSSL 3.0 REQUIRED) +target_link_libraries(${PROJECT_NAME} PRIVATE dynstr cjson OpenSSL::SSL) |
