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

8 lines
165 B
CMake
Raw Normal View History

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