diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..0e93a50 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,9 @@ +cmake_minimum_required(VERSION 3.16) +project(wepoll LANGUAGES C) + +add_library(wepoll STATIC + wepoll.c + wepoll.h +) + +target_include_directories(wepoll PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) \ No newline at end of file