init commit

This commit is contained in:
2024-03-19 01:05:51 +08:00
commit 199bbf2628
393 changed files with 34883 additions and 0 deletions

View File

@ -0,0 +1,12 @@
# 主要用于clion的cmake配置
cmake_minimum_required(VERSION 3.2)
project(ssocket)
include_directories(/usr/include)
add_executable(main src/main.c)
add_executable(client test/client.c)
TARGET_LINK_LIBRARIES(main pthread aio)