mirror of
https://github.com/ceph/ceph
synced 2024-12-19 09:57:05 +00:00
36918d7f78
1. WITH_LIBURING is used to set HAVE_LIBURING to decide use liburing in KernelDevice or not. 2. WITH_SYSTEM_LIBURING is to choose use system installed liburing or build the liburing from source code. Signed-off-by: Changcheng Liu <changcheng.liu@aliyun.com>
22 lines
717 B
CMake
22 lines
717 B
CMake
# - Find uring
|
|
#
|
|
# URING_INCLUDE_DIR - Where to find liburing.h
|
|
# URING_LIBRARIES - List of libraries when using uring.
|
|
# uring_FOUND - True if uring found.
|
|
|
|
find_path(URING_INCLUDE_DIR liburing.h)
|
|
find_library(URING_LIBRARIES liburing.a liburing)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(uring DEFAULT_MSG URING_LIBRARIES URING_INCLUDE_DIR)
|
|
|
|
if(uring_FOUND AND NOT TARGET uring::uring)
|
|
add_library(uring::uring UNKNOWN IMPORTED)
|
|
set_target_properties(uring::uring PROPERTIES
|
|
INTERFACE_INCLUDE_DIRECTORIES "${URING_INCLUDE_DIR}"
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES "C"
|
|
IMPORTED_LOCATION "${URING_LIBRARIES}")
|
|
endif()
|
|
|
|
mark_as_advanced(URING_INCLUDE_DIR URING_LIBRARIES)
|