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.
1 parent bb755a1 commit 1287a85Copy full SHA for 1287a85
backends/apple/coreml/CMakeLists.txt
@@ -25,6 +25,8 @@ endif()
25
26
option(COREML_BUILD_EXECUTOR_RUNNER "Build CoreML executor runner." OFF)
27
28
+set(CMAKE_OSX_DEPLOYMENT_TARGET 10.15)
29
+
30
# inmemoryfs sources
31
set(INMEMORYFS_SOURCES
32
runtime/inmemoryfs/inmemory_filesystem.cpp
@@ -239,6 +241,5 @@ if(EXECUTORCH_BUILD_COREML)
239
241
if(CMAKE_BUILD_TYPE STREQUAL "Debug" OR CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo")
240
242
target_compile_options(executorchcoreml PRIVATE -g)
243
endif()
- target_link_libraries(executorchcoreml PRIVATE coreml_util)
- target_link_libraries(executorchcoreml PRIVATE coreml_inmemoryfs)
244
+ target_link_libraries(executorchcoreml PRIVATE coreml_util coreml_inmemoryfs)
245
0 commit comments