We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c197a7 commit 7e51d3aCopy full SHA for 7e51d3a
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