fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
743 B
26 lines
743 B
# - Find liburing
|
|
#
|
|
# 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
|
|
NAMES liburing.h)
|
|
find_library(uring_LIBRARIES
|
|
NAMES liburing.a liburing)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(uring
|
|
DEFAULT_MSG uring_LIBRARIES uring_INCLUDE_DIR)
|
|
|
|
mark_as_advanced(
|
|
uring_INCLUDE_DIR
|
|
uring_LIBRARIES)
|
|
|
|
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()
|
|
|