This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-kni/cmake/FindLIBURING.cmake
luwenpeng 990d8ae173 TSG-10708 KNI使用io_uring替换read/write以实现I/O加速
* support iouring: 按需动态分配内存
2022-06-20 10:20:36 +08:00

8 lines
165 B
CMake

include(FindPkgConfig)
pkg_check_modules(LIBURING liburing)
if(LIBURING_FOUND)
set(SUPPORT_LIBURING true)
else()
set(SUPPORT_LIBURING false)
endif()