aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov@twistea.su>2025-02-08 22:13:52 +0300
committerjustanothercatgirl <sotov@twistea.su>2025-02-08 22:13:52 +0300
commitcab382db088d9f240253466a1c5a26c62f3967c8 (patch)
treec5502f1b49211dccd3e29e163e708708495a6407 /client
parent3eeee14d5d5c93ae3d156aabae5a96d1c09f185a (diff)
Implemented multiplexing in main thread (TCP loop). Removed CMake files.HEADmaster
TODO: Implement multiplexing in worker threads (UDP loops), implement channel_pool interface.
Diffstat (limited to 'client')
-rw-r--r--client/CMakeLists.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt
deleted file mode 100644
index 266ddf1..0000000
--- a/client/CMakeLists.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-# CMake files will be removed in the next several commits
-
-cmake_minimum_required(VERSION 3.20)
-
-project(kv_client
- VERSION 0.0
- DESCRIPTION "I will work on this one later"
- LANGUAGES C)
-
-set(SOURCE_FILES main.c ../include/packet.c)
-set(HEADER_FILES ../include/packet.h)
-
-add_executable(kv_client ${SOURCE_FILES})
-target_compile_definitions(kv_client PUBLIC DEBUG)
-target_link_libraries(kv_client PRIVATE opus c)