File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,7 @@ if(CMAKE_TOOLCHAIN_IOS
27
27
else ()
28
28
add_library (extension_module SHARED ${_extension_module__srcs} )
29
29
endif ()
30
- target_link_libraries (
31
- extension_module PRIVATE executorch_core extension_data_loader
32
- extension_flat_tensor
33
- )
30
+ target_link_libraries (extension_module PRIVATE executorch_core extension_data_loader extension_flat_tensor )
34
31
target_include_directories (extension_module PUBLIC ${EXECUTORCH_ROOT} /.. )
35
32
target_compile_options (
36
33
extension_module PUBLIC -Wno-deprecated-declarations -fPIC
@@ -40,8 +37,7 @@ target_compile_options(
40
37
# after cleaning up CMake targets.
41
38
add_library (extension_module_static STATIC ${_extension_module__srcs} )
42
39
target_link_libraries (
43
- extension_module_static PRIVATE executorch_core extension_data_loader
44
- extension_flat_tensor
40
+ extension_module_static PRIVATE executorch_core extension_data_loader extension_flat_tensor
45
41
)
46
42
target_include_directories (extension_module_static PUBLIC ${EXECUTORCH_ROOT} /.. )
47
43
target_compile_options (
You can’t perform that action at this time.
0 commit comments