blog/archive/other/ssocket/CMakeLists.txt
2024-03-19 02:45:09 +08:00

13 lines
235 B
CMake

# 主要用于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)