From 8a0c98d7939342eb316b9613777c67e69c2d7dfe Mon Sep 17 00:00:00 2001 From: Adrian Lundell Date: Fri, 12 Sep 2025 14:24:43 +0200 Subject: [PATCH] Make extension_runner_util install relative Signed-off-by: Adrian Lundell Change-Id: I3217fbfa005b317080ca030774153002a5901546 --- extension/runner_util/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extension/runner_util/CMakeLists.txt b/extension/runner_util/CMakeLists.txt index 1a9721c3920..0bf8f33a656 100644 --- a/extension/runner_util/CMakeLists.txt +++ b/extension/runner_util/CMakeLists.txt @@ -1,5 +1,6 @@ # Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. +# Copyright 2025 Arm Limited and/or its affiliates. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. @@ -28,7 +29,7 @@ target_compile_options(extension_runner_util PUBLIC ${_common_compile_options}) install( TARGETS extension_runner_util EXPORT ExecuTorchTargets - DESTINATION ${CMAKE_BINARY_DIR}/lib + DESTINATION lib INCLUDES DESTINATION ${_common_include_directories} )