Skip to content

Commit

Permalink
[build] Fix meson variable for executorch-llama source
Browse files Browse the repository at this point in the history
- Fix duplicated name `filter_sub_executorch_sources`

Signed-off-by: Yongjoo Ahn <[email protected]>
  • Loading branch information
anyj0527 authored and myungjoo committed Nov 28, 2024
1 parent ab1bf10 commit f826887
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ext/nnstreamer/tensor_filter/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,7 @@ if executorch_support_is_available
endif

if executorch_llama_support_is_available
filter_sub_executorch_sources = ['tensor_filter_executorch_llama.cc']
filter_sub_executorch_llama_sources = ['tensor_filter_executorch_llama.cc']
nnstreamer_filter_executorch_llama_deps = [executorch_llama_support_deps, glib_dep, nnstreamer_single_dep]

executorch_llama_compile_args = cxx.get_supported_arguments([
Expand All @@ -879,14 +879,14 @@ if executorch_llama_support_is_available
nnstreamer_filter_executorch_llama_deps += declare_dependency(compile_args: executorch_llama_compile_args)

shared_library('nnstreamer_filter_executorch-llama',
filter_sub_executorch_sources,
filter_sub_executorch_llama_sources,
dependencies: nnstreamer_filter_executorch_llama_deps,
install: true,
install_dir: filter_subplugin_install_dir
)

static_library('nnstreamer_filter_executorch-llama',
filter_sub_executorch_sources,
filter_sub_executorch_llama_sources,
dependencies: nnstreamer_filter_executorch_llama_deps,
install: true,
install_dir: nnstreamer_libdir
Expand Down

0 comments on commit f826887

Please sign in to comment.