blob: a7d9c5a9292f456fedceff64c1e9c8200569edc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# CMake files will be removed in the next several commits
cmake_minimum_required(VERSION 3.20)
project(kv
VERSION 0.0
DESCRIPTION "Just see the readme file in this repo"
LANGUAGES C)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
include_directories(include include/c_headers/include)
add_compile_options(-Wall -Wextra -Wpedantic -Werror -g)
add_subdirectory(server)
add_subdirectory(client)
|