Skip to content

Commit

Permalink
WIP: add kqueue to ev library
Browse files Browse the repository at this point in the history
  • Loading branch information
decarv committed Sep 22, 2024
1 parent 4523067 commit ceb9ec3
Show file tree
Hide file tree
Showing 2 changed files with 407 additions and 38 deletions.
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
add_compile_options(-DHAVE_URING=1)
include_directories(${LIBURING_INCLUDE_DIRS})
link_libraries(${LIBURING_LIBRARY})
else ()
add_compile_options(-DHAVE_URING=0)
endif()

add_compile_options(-DHAVE_EPOLL=1)
Expand Down Expand Up @@ -113,6 +111,8 @@ else()
${CJSON_INCLUDE_DIRS}
)

add_compile_options(-DHAVE_KQUEUE=1)

#
# Library directories
#
Expand Down
Loading

0 comments on commit ceb9ec3

Please sign in to comment.