[Meson/CustomFilter] link custom-filter obj
authorJaeyun <jy1210.jung@samsung.com>
Mon, 10 Dec 2018 10:27:33 +0000 (19:27 +0900)
committerMyungJoo Ham <myungjoo.ham@gmail.com>
Tue, 11 Dec 2018 01:14:19 +0000 (10:14 +0900)
In example custom-filter, link custom-filter.

Signed-off-by: Jaeyun Jung <jy1210.jung@samsung.com>
nnstreamer_example/custom_example_LSTM/meson.build
nnstreamer_example/custom_example_RNN/meson.build
nnstreamer_example/custom_example_average/meson.build
nnstreamer_example/custom_example_opencv/meson.build
nnstreamer_example/custom_example_passthrough/meson.build
nnstreamer_example/custom_example_scaler/meson.build

index e1a1d78..15edb52 100644 (file)
@@ -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]
 )
index 80a543c..e5075d2 100644 (file)
@@ -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]
 )
index f26774d..b389048 100644 (file)
@@ -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]
 )
index 7325944..01867af 100644 (file)
@@ -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]
 )
index 796462e..0a168b8 100644 (file)
@@ -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]
 )
index 9cd5293..957f841 100644 (file)
@@ -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]
 )