We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 845a01e + 3fa99d6 commit a6c69a6Copy full SHA for a6c69a6
build/executorch-config.cmake
@@ -119,7 +119,9 @@ endforeach()
119
120
# TODO: investigate use of install(EXPORT) to cleanly handle
121
# target_compile_options/target_compile_definitions for everything.
122
-set_target_properties(
123
- cpublas PROPERTIES INTERFACE_LINK_LIBRARIES extension_parallel
124
-)
+if (TARGET cpublas)
+ set_target_properties(
+ cpublas PROPERTIES INTERFACE_LINK_LIBRARIES extension_parallel
125
+ )
126
+endif()
127
target_compile_definitions(extension_threadpool INTERFACE ET_USE_THREADPOOL)
0 commit comments