From cb9e1dca5819e67834aec22d9c0e2eb7582f79f0 Mon Sep 17 00:00:00 2001 From: Matan Breizman Date: Mon, 9 Feb 2026 11:54:51 +0000 Subject: [PATCH] cmake/modules/Builduring.cmake: add URING::uring as alias Allow seastar submodule which expects URING:uring target name to be imported. Signed-off-by: Matan Breizman --- cmake/modules/Builduring.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmake/modules/Builduring.cmake b/cmake/modules/Builduring.cmake index 4e4107fb5ac..9f753dda516 100644 --- a/cmake/modules/Builduring.cmake +++ b/cmake/modules/Builduring.cmake @@ -42,4 +42,6 @@ function(build_uring) INTERFACE_INCLUDE_DIRECTORIES ${URING_INCLUDE_DIR} IMPORTED_LINK_INTERFACE_LANGUAGES "C" IMPORTED_LOCATION "${URING_LIBRARY_DIR}/liburing.a") + + add_library(URING::uring ALIAS uring::uring) endfunction() -- 2.47.3