From cab382db088d9f240253466a1c5a26c62f3967c8 Mon Sep 17 00:00:00 2001 From: justanothercatgirl Date: Sat, 8 Feb 2025 22:13:52 +0300 Subject: Implemented multiplexing in main thread (TCP loop). Removed CMake files. TODO: Implement multiplexing in worker threads (UDP loops), implement channel_pool interface. --- server/CMakeLists.txt | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 server/CMakeLists.txt (limited to 'server/CMakeLists.txt') diff --git a/server/CMakeLists.txt b/server/CMakeLists.txt deleted file mode 100644 index f63f897..0000000 --- a/server/CMakeLists.txt +++ /dev/null @@ -1,21 +0,0 @@ -# CMake files will be removed in the next several commits - -cmake_minimum_required(VERSION 3.20) - -project(kv_server - VERSION 0.0 - DESCRIPTION "A server for kv project." - LANGUAGES C) - -set(SOURCE_FILES main.c channel.c tcp.c ../include/packet.c) -set(HEADER_FILES channel.h tcp.h) - -add_executable(kv_server ${SOURCE_FILES}) -target_compile_definitions(kv_server PUBLIC DEBUG) -target_link_libraries(kv_server - PUBLIC crypto - PUBLIC pthread -) - - - -- cgit v1.2.3-70-g09d2