mirror of
https://github.com/skywind3000/kcp.git
synced 2025-03-14 17:42:56 +08:00
12 lines
121 B
CMake
12 lines
121 B
CMake
PROJECT(kcp)
|
|
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
|
|
|
|
add_library(kcp STATIC ikcp.c)
|
|
|
|
add_executable(kcp_test test.cpp)
|
|
|
|
|
|
|
|
|
|
|