File tree Expand file tree Collapse file tree 4 files changed +5
-9
lines changed Expand file tree Collapse file tree 4 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ endif()
1818
1919list (TRANSFORM _extension_flat_tensor__srcs PREPEND "${EXECUTORCH_ROOT} /" )
2020add_library (extension_flat_tensor ${_extension_flat_tensor__srcs} )
21- target_link_libraries (extension_flat_tensor executorch extension_data_loader)
21+ target_link_libraries (extension_flat_tensor executorch_core extension_data_loader)
2222target_include_directories (
2323 extension_flat_tensor
2424 PUBLIC ${EXECUTORCH_ROOT} /..
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ target_include_directories(
4343
4444add_library (extension_llm_runner STATIC ${_extension_llm_runner__srcs} )
4545
46- set (runner_deps executorch extension_data_loader extension_module
46+ set (runner_deps executorch_core extension_data_loader extension_module
4747 extension_tensor
4848)
4949
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ endif()
1818
1919list (TRANSFORM _extension_runner_util__srcs PREPEND "${EXECUTORCH_ROOT} /" )
2020add_library (extension_runner_util ${_extension_runner_util__srcs} )
21- target_link_libraries (extension_runner_util executorch )
21+ target_link_libraries (extension_runner_util executorch_core )
2222target_include_directories (extension_runner_util PUBLIC ${EXECUTORCH_ROOT} /..)
2323target_compile_options (extension_runner_util PUBLIC ${_common_compile_options} )
2424
Original file line number Diff line number Diff line change @@ -196,9 +196,9 @@ filters = [
196196 " .cpp$" ,
197197]
198198deps = [
199+ " extension_data_loader" ,
199200 " extension_flat_tensor_schema" ,
200201 " executorch_core" ,
201- " executorch" ,
202202]
203203
204204[targets .extension_module ]
@@ -209,9 +209,9 @@ filters = [
209209 " .cpp$" ,
210210]
211211deps = [
212- " executorch" ,
213212 " executorch_core" ,
214213 " extension_data_loader" ,
214+ " extension_flat_tensor" ,
215215]
216216
217217[targets .extension_runner_util ]
@@ -222,7 +222,6 @@ filters = [
222222 " .cpp$" ,
223223]
224224deps = [
225- " executorch" ,
226225 " executorch_core" ,
227226]
228227
@@ -234,7 +233,6 @@ filters = [
234233 " .cpp$" ,
235234]
236235deps = [
237- " executorch" ,
238236 " executorch_core" ,
239237 " extension_module" ,
240238 " extension_runner_util" ,
@@ -248,7 +246,6 @@ filters = [
248246 " .cpp$" ,
249247]
250248deps = [
251- " executorch" ,
252249 " executorch_core" ,
253250]
254251
@@ -260,7 +257,6 @@ filters = [
260257 " .cpp$" ,
261258]
262259deps = [
263- " executorch" ,
264260 " executorch_core" ,
265261]
266262
You can’t perform that action at this time.
0 commit comments