diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..d3a1dbd --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,11 @@ +PROJECT(kcp) +CMAKE_MINIMUM_REQUIRED(VERSION 2.6) + +add_library(kcp STATIC ikcp.c) + +add_executable(kcp_test test.cpp) + + + + +