Skip to content

Prefix target_link_options_shared_lib with executorch_ #12667

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 56 commits into from
Jul 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
9e3e2e7
Update
swolchok Jul 13, 2025
16f0274
forgot to amend
swolchok Jul 13, 2025
99ec5a7
Update
swolchok Jul 14, 2025
ff3cdb9
Update
swolchok Jul 14, 2025
513de13
Update
swolchok Jul 14, 2025
76db1f1
Update
swolchok Jul 14, 2025
08bffac
Update
swolchok Jul 14, 2025
dff96c8
Update
swolchok Jul 14, 2025
0e2bce6
Update
swolchok Jul 14, 2025
35d8319
Update
swolchok Jul 14, 2025
a31187e
Update
swolchok Jul 15, 2025
dcbce0d
Update
swolchok Jul 15, 2025
bc8f971
Update
swolchok Jul 15, 2025
29d3999
Update
swolchok Jul 15, 2025
7e4040a
Update
swolchok Jul 15, 2025
2dacf6f
Update
swolchok Jul 15, 2025
fb2b775
Update
swolchok Jul 15, 2025
02f19a6
Update
swolchok Jul 15, 2025
225d5a6
Update
swolchok Jul 15, 2025
41bf264
Update
swolchok Jul 16, 2025
f54a8ce
Update
swolchok Jul 16, 2025
e48e6cc
Update
swolchok Jul 16, 2025
a2f14ac
Update
swolchok Jul 16, 2025
c31a4b9
Update
swolchok Jul 17, 2025
4fd7372
Update
swolchok Jul 17, 2025
d650396
Update
swolchok Jul 17, 2025
3bfdade
Update
swolchok Jul 17, 2025
00acd77
Update
swolchok Jul 17, 2025
6946143
Update
swolchok Jul 17, 2025
431ddd8
Update
swolchok Jul 17, 2025
60456ca
Update
swolchok Jul 17, 2025
dcb3ca0
Update
swolchok Jul 18, 2025
3c30b31
Update
swolchok Jul 18, 2025
e9928a7
Update
swolchok Jul 18, 2025
b57678b
Update
swolchok Jul 18, 2025
05effc4
Update
swolchok Jul 18, 2025
f5bcdcc
Update
swolchok Jul 18, 2025
2e21d9a
Update
swolchok Jul 19, 2025
63e4a27
Update
swolchok Jul 19, 2025
4c2e046
rebase
swolchok Jul 19, 2025
0eb3d8d
rebase
swolchok Jul 19, 2025
a451cc3
rebase
swolchok Jul 19, 2025
0d164ce
Update
swolchok Jul 21, 2025
ccd0e2d
Update
swolchok Jul 21, 2025
f9b96eb
Update
swolchok Jul 21, 2025
02d6d67
Update
swolchok Jul 21, 2025
dd18bfe
Update
swolchok Jul 21, 2025
a342614
Update
swolchok Jul 21, 2025
995f6fa
Update
swolchok Jul 22, 2025
d2ee588
Update
swolchok Jul 22, 2025
a06c916
Merge branch 'main' into gh/swolchok/517/head
swolchok Jul 22, 2025
3d760e0
Update
swolchok Jul 22, 2025
ae4ac22
Update
swolchok Jul 22, 2025
5173bf2
Update
swolchok Jul 23, 2025
1cf3567
Update
swolchok Jul 23, 2025
7852f9a
Update
swolchok Jul 23, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ target_link_libraries(executorch PRIVATE executorch_core)
target_include_directories(executorch PUBLIC ${_common_include_directories})
target_compile_definitions(executorch PUBLIC C10_USING_CUSTOM_GENERATED_MACROS)
target_compile_options(executorch PUBLIC ${_common_compile_options})
target_link_options_shared_lib(executorch)
executorch_target_link_options_shared_lib(executorch)

#
# portable_ops_lib: A library to register core ATen ops using portable kernels,
Expand Down Expand Up @@ -690,7 +690,7 @@ endif()

if(EXECUTORCH_BUILD_KERNELS_QUANTIZED)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/kernels/quantized)
target_link_options_shared_lib(quantized_ops_lib)
executorch_target_link_options_shared_lib(quantized_ops_lib)
endif()

if(EXECUTORCH_BUILD_EXECUTOR_RUNNER)
Expand Down
4 changes: 2 additions & 2 deletions backends/apple/coreml/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ if(APPLE)
${CMAKE_CURRENT_SOURCE_DIR}/third-party/coremltools/deps/protobuf/cmake
)

target_link_options_shared_lib(libprotobuf-lite)
executorch_target_link_options_shared_lib(libprotobuf-lite)
target_link_libraries(coremldelegate PRIVATE libprotobuf-lite)
endif()

Expand All @@ -210,7 +210,7 @@ if(APPLE)
${FOUNDATION_FRAMEWORK} ${SQLITE_LIBRARY}
)

target_link_options_shared_lib(coremldelegate)
executorch_target_link_options_shared_lib(coremldelegate)

if(EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER)
target_link_libraries(
Expand Down
2 changes: 1 addition & 1 deletion backends/apple/mps/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ target_link_libraries(
${MPS_FRAMEWORK} ${MPS_GRAPH_FRAMEWORK}
)

target_link_options_shared_lib(mpsdelegate)
executorch_target_link_options_shared_lib(mpsdelegate)
target_compile_options(mpsdelegate PUBLIC ${_common_compile_options})
target_compile_options(mpsdelegate PRIVATE "-fno-objc-arc")

Expand Down
4 changes: 2 additions & 2 deletions backends/cadence/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ if(EXECUTORCH_CADENCE_CPU_RUNNER)
# Find prebuilt libraries. executorch package should contain portable_ops_lib,
# etdump, bundled_program.
find_package(executorch CONFIG REQUIRED)
target_link_options_shared_lib(executorch)
target_link_options_shared_lib(portable_ops_lib)
executorch_target_link_options_shared_lib(executorch)
executorch_target_link_options_shared_lib(portable_ops_lib)

target_include_directories(executorch INTERFACE ${_common_include_directories})

Expand Down
2 changes: 1 addition & 1 deletion backends/mediatek/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ target_sources(
${CMAKE_CURRENT_LIST_DIR}/runtime/NeuronExecutor.cpp
${CMAKE_CURRENT_LIST_DIR}/runtime/NeuronBufferAllocator.cpp
)
target_link_options_shared_lib(neuron_backend)
executorch_target_link_options_shared_lib(neuron_backend)

install(TARGETS neuron_backend DESTINATION lib)
2 changes: 1 addition & 1 deletion backends/openvino/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ target_link_libraries(openvino_backend PRIVATE openvino::runtime executorch_core
# Add source files for OpenVINO backend
target_sources(openvino_backend PRIVATE ${CMAKE_CURRENT_LIST_DIR}/runtime/OpenvinoBackend.cpp)

target_link_options_shared_lib(openvino_backend)
executorch_target_link_options_shared_lib(openvino_backend)

if(EXECUTORCH_BUILD_OPENVINO_EXECUTOR_RUNNER)
# Build executor runner binary for openvino backend
Expand Down
2 changes: 1 addition & 1 deletion backends/qualcomm/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ target_link_libraries(
#
# add linker option
#
target_link_options_shared_lib(qnn_executorch_backend)
executorch_target_link_options_shared_lib(qnn_executorch_backend)

#
# add sources
Expand Down
10 changes: 5 additions & 5 deletions backends/vulkan/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ if(NOT RUNTIME_PATH)
set(RUNTIME_PATH ${CMAKE_CURRENT_SOURCE_DIR}/runtime)
endif()

# Include this file to access target_link_options_shared_lib This is required to
# provide access to target_link_options_shared_lib which allows libraries to be
# linked with the --whole-archive flag. This is required for libraries that
# perform dynamic registration via static initialization.
# Include this file to access executorch_target_link_options_shared_lib This is
# required to provide access to executorch_target_link_options_shared_lib which
# allows libraries to be linked with the --whole-archive flag. This is required
# for libraries that perform dynamic registration via static initialization.
include(${EXECUTORCH_ROOT}/tools/cmake/Utils.cmake)

include(cmake/ShaderLibrary.cmake)
Expand Down Expand Up @@ -113,7 +113,7 @@ target_include_directories(
target_link_libraries(vulkan_backend PRIVATE vulkan_schema executorch_core)
target_compile_options(vulkan_backend PRIVATE ${VULKAN_CXX_FLAGS})
# Link this library with --whole-archive due to dynamic backend registration
target_link_options_shared_lib(vulkan_backend)
executorch_target_link_options_shared_lib(vulkan_backend)

set_property(TARGET vulkan_backend PROPERTY CXX_STANDARD 17)

Expand Down
4 changes: 2 additions & 2 deletions backends/vulkan/cmake/ShaderLibrary.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function(vulkan_shader_lib library_name generated_spv_cpp)
target_link_libraries(${library_name} vulkan_backend)
target_compile_options(${library_name} PRIVATE ${VULKAN_CXX_FLAGS})
# Link this library with --whole-archive due to dynamic shader registrations
target_link_options_shared_lib(${library_name})
executorch_target_link_options_shared_lib(${library_name})
endfunction()

# Convenience macro to generate a SPIR-V shader library target. Given the path
Expand All @@ -105,7 +105,7 @@ macro(vulkan_shader_library shaders_path library_name)
target_link_libraries(${library_name} vulkan_backend)
target_compile_options(${library_name} PRIVATE ${VULKAN_CXX_FLAGS})
# Link this library with --whole-archive due to dynamic shader registrations
target_link_options_shared_lib(${library_name})
executorch_target_link_options_shared_lib(${library_name})

unset(VULKAN_SHADERGEN_ENV)
unset(VULKAN_SHADERGEN_OUT_PATH)
Expand Down
6 changes: 3 additions & 3 deletions backends/vulkan/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ if(TARGET vulkan_backend)
set(PYTHON_EXECUTABLE python3)
endif()

# Include this file to access target_link_options_shared_lib This is required
# to provide access to target_link_options_shared_lib which allows libraries
# Include this file to access executorch_target_link_options_shared_lib This is required
# to provide access to executorch_target_link_options_shared_lib which allows libraries
# to be linked with the --whole-archive flag. This is required for libraries
# that perform dynamic registration via static initialization.
include(${EXECUTORCH_ROOT}/tools/cmake/Utils.cmake)
Expand Down Expand Up @@ -75,7 +75,7 @@ if(TARGET vulkan_backend)
${CMAKE_CURRENT_SOURCE_DIR}/vulkan_compute_api_test.cpp
)

target_link_options_shared_lib(vulkan_backend)
executorch_target_link_options_shared_lib(vulkan_backend)

add_executable(
vulkan_compute_api_test ${COMPUTE_API_TEST_CPP} ${TEST_UTILS_CPP}
Expand Down
6 changes: 3 additions & 3 deletions backends/vulkan/test/op_tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ if(NOT EXECUTORCH_ROOT)
set(EXECUTORCH_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/../../../..)
endif()

# Include this file to access target_link_options_shared_lib This is required to
# provide access to target_link_options_shared_lib which allows libraries to be
# Include this file to access executorch_target_link_options_shared_lib This is required to
# provide access to executorch_target_link_options_shared_lib which allows libraries to be
# linked with the --whole-archive flag. This is required for libraries that
# perform dynamic registration via static initialization.
include(${EXECUTORCH_ROOT}/tools/cmake/Utils.cmake)
Expand Down Expand Up @@ -66,7 +66,7 @@ set(COMMON_INCLUDES
${TORCH_BASE_PATH}/include/torch/csrc/api/include
)

target_link_options_shared_lib(vulkan_backend)
executorch_target_link_options_shared_lib(vulkan_backend)

function(vulkan_op_test test_name test_src)
set(extra_deps ${ARGN})
Expand Down
2 changes: 1 addition & 1 deletion backends/xnnpack/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ target_include_directories(
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/third-party/cpuinfo/include
)
target_compile_options(xnnpack_backend PUBLIC ${_common_compile_options})
target_link_options_shared_lib(xnnpack_backend)
executorch_target_link_options_shared_lib(xnnpack_backend)

install(
TARGETS xnnpack_backend
Expand Down
4 changes: 2 additions & 2 deletions docs/source/kernel-library-custom-aten-kernel.md
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ Link it into ExecuTorch runtime: In our `CMakeLists.txt` that builds the binary/
Here's an example to do it:

```cmake
# For target_link_options_shared_lib
# For executorch_target_link_options_shared_lib
include(${EXECUTORCH_ROOT}/tools/cmake/Utils.cmake)

# Add a custom op library
Expand All @@ -282,7 +282,7 @@ target_link_libraries(custom_op_lib PUBLIC executorch)
add_executable(custom_op_runner PUBLIC main.cpp)

# Link this library with --whole-archive !! IMPORTANT !! this is to avoid the operators being stripped by linker
target_link_options_shared_lib(custom_op_lib)
executorch_target_link_options_shared_lib(custom_op_lib)

# Link custom op lib
target_link_libraries(custom_op_runner PUBLIC custom_op_lib)
Expand Down
4 changes: 2 additions & 2 deletions examples/devtools/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ set(_common_include_directories ${EXECUTORCH_ROOT}/..)
# Find prebuilt libraries. executorch package should contain portable_ops_lib,
# etdump, bundled_program.
find_package(executorch CONFIG REQUIRED)
target_link_options_shared_lib(executorch)
target_link_options_shared_lib(portable_ops_lib)
executorch_target_link_options_shared_lib(executorch)
executorch_target_link_options_shared_lib(portable_ops_lib)

target_include_directories(executorch INTERFACE ${_common_include_directories})

Expand Down
24 changes: 12 additions & 12 deletions examples/models/llama/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ find_package(gflags REQUIRED)
# cross-compiling (e.g., to Android) to work as well.
list(APPEND CMAKE_FIND_ROOT_PATH ${CMAKE_CURRENT_BINARY_DIR}/../../..)
find_package(executorch CONFIG REQUIRED FIND_ROOT_PATH_BOTH)
target_link_options_shared_lib(executorch)
executorch_target_link_options_shared_lib(executorch)

# llama_runner library
add_subdirectory(runner)
Expand All @@ -100,18 +100,18 @@ if(TARGET optimized_native_cpu_ops_lib)
cpublas
eigen_blas
)
target_link_options_shared_lib(optimized_native_cpu_ops_lib)
executorch_target_link_options_shared_lib(optimized_native_cpu_ops_lib)
else()
list(APPEND link_libraries portable_ops_lib portable_kernels)
target_link_options_shared_lib(portable_ops_lib)
executorch_target_link_options_shared_lib(portable_ops_lib)
endif()

# quantized_ops_lib: Register quantized op kernels into the runtime
target_link_options_shared_lib(quantized_ops_lib)
executorch_target_link_options_shared_lib(quantized_ops_lib)
list(APPEND link_libraries quantized_kernels quantized_ops_lib)

if(TARGET custom_ops)
target_link_options_shared_lib(custom_ops)
executorch_target_link_options_shared_lib(custom_ops)
list(APPEND link_libraries custom_ops)
endif()

Expand All @@ -126,13 +126,13 @@ if(EXECUTORCH_BUILD_TORCHAO)
${CMAKE_CURRENT_SOURCE_DIR}/../../../third-party/ao/torchao/experimental
${CMAKE_CURRENT_BINARY_DIR}/../../../third-party/ao/torchao/experimental
)
target_link_options_shared_lib(torchao_ops_executorch)
executorch_target_link_options_shared_lib(torchao_ops_executorch)
list(APPEND link_libraries torchao_ops_executorch)
if(EXECUTORCH_BUILD_MPS)
add_subdirectory(
${CMAKE_CURRENT_SOURCE_DIR}/../../../third-party/ao/torchao/experimental/ops/mps
${CMAKE_CURRENT_BINARY_DIR}/../../../third-party/ao/torchao/experimental/ops/mps)
target_link_options_shared_lib(torchao_ops_mps_executorch)
executorch_target_link_options_shared_lib(torchao_ops_mps_executorch)
list(APPEND link_libraries torchao_ops_mps_executorch)
endif()
endif()
Expand Down Expand Up @@ -162,19 +162,19 @@ if(TARGET xnnpack_backend)
list(APPEND xnnpack_backend_libs kleidiai)
endif()
list(APPEND link_libraries ${xnnpack_backend_libs})
target_link_options_shared_lib(xnnpack_backend)
executorch_target_link_options_shared_lib(xnnpack_backend)
endif()

# Vulkan backend
if(TARGET vulkan_backend)
list(APPEND link_libraries vulkan_backend)
target_link_options_shared_lib(vulkan_backend)
executorch_target_link_options_shared_lib(vulkan_backend)
endif()

# Qnn backend
if(TARGET qnn_executorch_backend)
list(APPEND link_libraries qnn_executorch_backend)
target_link_options_shared_lib(qnn_executorch_backend)
executorch_target_link_options_shared_lib(qnn_executorch_backend)
endif()

# MPS backend
Expand All @@ -188,7 +188,7 @@ if(TARGET mpsdelegate)
"-weak_framework MetalPerformanceShadersGraph"
"-weak_framework Metal"
)
target_link_options_shared_lib(mpsdelegate)
executorch_target_link_options_shared_lib(mpsdelegate)
endif()

if(TARGET coremldelegate)
Expand All @@ -202,7 +202,7 @@ if(TARGET coremldelegate)
"-framework CoreML"
"-framework Accelerate"
)
target_link_options_shared_lib(coremldelegate)
executorch_target_link_options_shared_lib(coremldelegate)
endif()

# This one is needed for cpuinfo where it uses android specific log lib
Expand Down
18 changes: 9 additions & 9 deletions examples/models/llava/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ find_package(gflags REQUIRED)
# find `executorch` libraries Same as for gflags
list(APPEND CMAKE_FIND_ROOT_PATH ${CMAKE_CURRENT_BINARY_DIR}/../../..)
find_package(executorch CONFIG REQUIRED FIND_ROOT_PATH_BOTH)
target_link_options_shared_lib(executorch)
executorch_target_link_options_shared_lib(executorch)

# llava_runner library
add_subdirectory(runner)
Expand All @@ -97,14 +97,14 @@ if(EXECUTORCH_BUILD_KERNELS_OPTIMIZED)
cpublas
eigen_blas
)
target_link_options_shared_lib(optimized_native_cpu_ops_lib)
executorch_target_link_options_shared_lib(optimized_native_cpu_ops_lib)
else()
list(APPEND link_libraries portable_ops_lib portable_kernels)
target_link_options_shared_lib(portable_ops_lib)
executorch_target_link_options_shared_lib(portable_ops_lib)
endif()

# quantized_ops_lib: Register quantized op kernels into the runtime
target_link_options_shared_lib(quantized_ops_lib)
executorch_target_link_options_shared_lib(quantized_ops_lib)
list(APPEND link_libraries quantized_kernels quantized_ops_lib)

if(EXECUTORCH_BUILD_KERNELS_LLM)
Expand Down Expand Up @@ -135,19 +135,19 @@ if(TARGET xnnpack_backend)
list(APPEND xnnpack_backend_libs kleidiai)
endif()
list(APPEND link_libraries ${xnnpack_backend_libs})
target_link_options_shared_lib(xnnpack_backend)
executorch_target_link_options_shared_lib(xnnpack_backend)
endif()

# Vulkan backend
if(TARGET vulkan_backend)
list(APPEND link_libraries vulkan_backend)
target_link_options_shared_lib(vulkan_backend)
executorch_target_link_options_shared_lib(vulkan_backend)
endif()

# Qnn backend
if(TARGET qnn_executorch_backend)
list(APPEND link_libraries qnn_executorch_backend)
target_link_options_shared_lib(qnn_executorch_backend)
executorch_target_link_options_shared_lib(qnn_executorch_backend)
endif()

# MPS backend
Expand All @@ -161,7 +161,7 @@ if(TARGET mpsdelegate)
"-weak_framework MetalPerformanceShadersGraph"
"-weak_framework Metal"
)
target_link_options_shared_lib(mpsdelegate)
executorch_target_link_options_shared_lib(mpsdelegate)
endif()

if(TARGET coremldelegate)
Expand All @@ -175,7 +175,7 @@ if(TARGET coremldelegate)
"-framework CoreML"
"-framework Accelerate"
)
target_link_options_shared_lib(coremldelegate)
executorch_target_link_options_shared_lib(coremldelegate)
endif()

# This one is needed for cpuinfo where it uses android specific log lib
Expand Down
2 changes: 1 addition & 1 deletion examples/models/phi-3-mini/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ set(_common_include_directories
list(APPEND CMAKE_FIND_ROOT_PATH ${CMAKE_CURRENT_BINARY_DIR}/../../..)
find_package(executorch CONFIG REQUIRED FIND_ROOT_PATH_BOTH)

target_link_options_shared_lib(executorch)
executorch_target_link_options_shared_lib(executorch)

set(BUILD_TESTING OFF)
add_subdirectory(
Expand Down
8 changes: 4 additions & 4 deletions examples/models/yolo12/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ set(_common_include_directories ${EXECUTORCH_ROOT}/..)

# find `executorch` libraries Same as for gflags
find_package(executorch CONFIG REQUIRED PATHS ${EXECUTORCH_ROOT}/cmake-out)
target_link_options_shared_lib(executorch)
executorch_target_link_options_shared_lib(executorch)

add_subdirectory(${EXECUTORCH_ROOT}/third-party/gflags gflags)
set(link_libraries gflags)
list(APPEND link_libraries portable_ops_lib portable_kernels)
target_link_options_shared_lib(portable_ops_lib)
executorch_target_link_options_shared_lib(portable_ops_lib)


if(USE_XNNPACK_BACKEND)
set(xnnpack_backend_libs xnnpack_backend XNNPACK microkernels-prod)
list(APPEND link_libraries ${xnnpack_backend_libs})
target_link_options_shared_lib(xnnpack_backend)
executorch_target_link_options_shared_lib(xnnpack_backend)
endif()

if(USE_OPENVINO_BACKEND)
Expand All @@ -54,7 +54,7 @@ if(USE_OPENVINO_BACKEND)
${CMAKE_CURRENT_BINARY_DIR}/../../lib
)
list(APPEND link_libraries openvino_backend)
target_link_options_shared_lib(openvino_backend)
executorch_target_link_options_shared_lib(openvino_backend)
endif()

list(APPEND link_libraries extension_threadpool pthreadpool)
Expand Down
Loading
Loading