From 3eeee14d5d5c93ae3d156aabae5a96d1c09f185a Mon Sep 17 00:00:00 2001 From: justanothercatgirl Date: Thu, 4 Jul 2024 20:49:53 +0300 Subject: Renamed types, migrated to make, changed directory hierarchy --- client/CMakeLists.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'client/CMakeLists.txt') diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index 116ef40..266ddf1 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -1,3 +1,5 @@ +# CMake files will be removed in the next several commits + cmake_minimum_required(VERSION 3.20) project(kv_client @@ -5,8 +7,9 @@ project(kv_client DESCRIPTION "I will work on this one later" LANGUAGES C) -set(SOURCE_FILES main.c ../server/channel.c) -set(HEADER_FILES ../server/channel.h) +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) -- cgit v1.2.3-70-g09d2