From b559f00d3dc94089a0e211e932bf6fce0c1ab3b6 Mon Sep 17 00:00:00 2001 From: Ross Brunton Date: Wed, 28 May 2025 16:00:38 +0100 Subject: [PATCH] [UR][Offload] Install libur_adapter_offload.so as part of `install` tgt Running `ninja install` in a build of UR with offload enabled didn't install it into `install/lib`. Now it does. --- unified-runtime/source/adapters/offload/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/unified-runtime/source/adapters/offload/CMakeLists.txt b/unified-runtime/source/adapters/offload/CMakeLists.txt index 46c8c96be1f49..6c6a50625adc4 100644 --- a/unified-runtime/source/adapters/offload/CMakeLists.txt +++ b/unified-runtime/source/adapters/offload/CMakeLists.txt @@ -44,6 +44,7 @@ add_ur_adapter(${TARGET_NAME} ${CMAKE_CURRENT_SOURCE_DIR}/ur_interface_loader.cpp ${CMAKE_CURRENT_SOURCE_DIR}/usm.cpp ) +install_ur_library(${TARGET_NAME}) set_target_properties(${TARGET_NAME} PROPERTIES VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}"