summaryrefslogtreecommitdiffstats
path: root/src/rocksdb/cmake/modules/Finduring.cmake
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/rocksdb/cmake/modules/Finduring.cmake26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/rocksdb/cmake/modules/Finduring.cmake b/src/rocksdb/cmake/modules/Finduring.cmake
new file mode 100644
index 000000000..8cb14cb27
--- /dev/null
+++ b/src/rocksdb/cmake/modules/Finduring.cmake
@@ -0,0 +1,26 @@
+# - 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()