From: Jaeyun Date: Mon, 10 Dec 2018 10:27:33 +0000 (+0900) Subject: [Meson/CustomFilter] link custom-filter obj X-Git-Tag: v0.1.0~73 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=70a18c43f02cadd0c273e178477bdb895d9770a3;p=platform%2Fupstream%2Fnnstreamer.git [Meson/CustomFilter] link custom-filter obj In example custom-filter, link custom-filter. Signed-off-by: Jaeyun Jung --- diff --git a/nnstreamer_example/custom_example_LSTM/meson.build b/nnstreamer_example/custom_example_LSTM/meson.build index e1a1d78..15edb52 100644 --- a/nnstreamer_example/custom_example_LSTM/meson.build +++ b/nnstreamer_example/custom_example_LSTM/meson.build @@ -2,5 +2,5 @@ dummyLSTM = shared_library('dummyLSTM', 'dummy_LSTM.c', dependencies: [nnstreamer_deps], include_directories: nnstreamer_inc, - objects: [tensor_commonOBJ, tensor_filterOBJ] + objects: [tensor_commonOBJ, tensor_filter_customOBJ] ) diff --git a/nnstreamer_example/custom_example_RNN/meson.build b/nnstreamer_example/custom_example_RNN/meson.build index 80a543c..e5075d2 100644 --- a/nnstreamer_example/custom_example_RNN/meson.build +++ b/nnstreamer_example/custom_example_RNN/meson.build @@ -2,5 +2,5 @@ dummyRNN = shared_library('dummyRNN', 'dummy_RNN.c', dependencies: [nnstreamer_deps], include_directories: nnstreamer_inc, - objects: [tensor_commonOBJ, tensor_filterOBJ] + objects: [tensor_commonOBJ, tensor_filter_customOBJ] ) diff --git a/nnstreamer_example/custom_example_average/meson.build b/nnstreamer_example/custom_example_average/meson.build index f26774d..b389048 100644 --- a/nnstreamer_example/custom_example_average/meson.build +++ b/nnstreamer_example/custom_example_average/meson.build @@ -2,5 +2,5 @@ nnstreamer_customfilter_average = shared_library('nnstreamer_customfilter_averag 'nnstreamer_customfilter_example_average.c', dependencies: [nnstreamer_deps], include_directories: nnstreamer_inc, - objects: [tensor_commonOBJ, tensor_filterOBJ] + objects: [tensor_commonOBJ, tensor_filter_customOBJ] ) diff --git a/nnstreamer_example/custom_example_opencv/meson.build b/nnstreamer_example/custom_example_opencv/meson.build index 7325944..01867af 100644 --- a/nnstreamer_example/custom_example_opencv/meson.build +++ b/nnstreamer_example/custom_example_opencv/meson.build @@ -4,12 +4,12 @@ nnstreamer_customfilter_opencv_scaler = shared_library('nnstreamer_customfilter_ 'nnstreamer_customfilter_opencv_scaler.cc', dependencies: [nnstreamer_deps, opencv_dep], include_directories: nnstreamer_inc, - objects: [tensor_commonOBJ, tensor_filterOBJ] + objects: [tensor_commonOBJ, tensor_filter_customOBJ] ) nnstreamer_customfilter_opencv_average = shared_library('nnstreamer_customfilter_opencv_average', 'nnstreamer_customfilter_opencv_average.cc', dependencies: [nnstreamer_deps, opencv_dep], include_directories: nnstreamer_inc, - objects: [tensor_commonOBJ, tensor_filterOBJ] + objects: [tensor_commonOBJ, tensor_filter_customOBJ] ) diff --git a/nnstreamer_example/custom_example_passthrough/meson.build b/nnstreamer_example/custom_example_passthrough/meson.build index 796462e..0a168b8 100644 --- a/nnstreamer_example/custom_example_passthrough/meson.build +++ b/nnstreamer_example/custom_example_passthrough/meson.build @@ -2,12 +2,12 @@ nnstreamer_customfilter_passthrough = shared_library('nnstreamer_customfilter_pa 'nnstreamer_customfilter_example_passthrough.c', dependencies: [nnstreamer_deps], include_directories: nnstreamer_inc, - objects: [tensor_commonOBJ, tensor_filterOBJ] + objects: [tensor_commonOBJ, tensor_filter_customOBJ] ) nnstreamer_customfilter_passthrough_variable = shared_library('nnstreamer_customfilter_passthrough_variable', 'nnstreamer_customfilter_example_passthrough_variable.c', dependencies: [nnstreamer_deps], include_directories: nnstreamer_inc, - objects: [tensor_commonOBJ, tensor_filterOBJ] + objects: [tensor_commonOBJ, tensor_filter_customOBJ] ) diff --git a/nnstreamer_example/custom_example_scaler/meson.build b/nnstreamer_example/custom_example_scaler/meson.build index 9cd5293..957f841 100644 --- a/nnstreamer_example/custom_example_scaler/meson.build +++ b/nnstreamer_example/custom_example_scaler/meson.build @@ -2,12 +2,12 @@ nnstreamer_customfilter_scaler = shared_library('nnstreamer_customfilter_scaler' 'nnstreamer_customfilter_example_scaler.c', dependencies: [nnstreamer_deps], include_directories: nnstreamer_inc, - objects: [tensor_commonOBJ, tensor_filterOBJ] + objects: [tensor_commonOBJ, tensor_filter_customOBJ] ) nnstreamer_customfilter_scaler_allocator = shared_library('nnstreamer_customfilter_scaler_allocator', 'nnstreamer_customfilter_example_scaler_allocator.c', dependencies: [nnstreamer_deps], include_directories: nnstreamer_inc, - objects: [tensor_commonOBJ, tensor_filterOBJ] + objects: [tensor_commonOBJ, tensor_filter_customOBJ] )