forked from nnstreamer/nnstreamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
589 lines (511 loc) · 19.9 KB
/
meson.build
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
# If you are using Ubuntu/Xenial, Do "force-version" on meson to get the required version.
# If you are using Tizen 5.0+ or Ubuntu/Bionix+, you don't need to mind meson version.
project('nnstreamer', 'c', 'cpp',
version: '1.7.2',
license: ['LGPL-2.1'],
meson_version: '>=0.50.0',
default_options: [
'werror=true',
'warning_level=2',
'c_std=gnu89',
'cpp_std=c++14'
]
)
add_project_arguments('-DVERSION="' + meson.project_version() + '"', language: ['c', 'cpp'])
version_split = meson.project_version().split('.')
add_project_arguments('-DVERSION_MAJOR="' + version_split[0] + '"', language: ['c', 'cpp'])
add_project_arguments('-DVERSION_MINOR="' + version_split[1] + '"', language: ['c', 'cpp'])
add_project_arguments('-DVERSION_MICRO="' + version_split[2] + '"', language: ['c', 'cpp'])
cc = meson.get_compiler('c')
cxx = meson.get_compiler('cpp')
build_platform = ''
so_ext = 'so'
if get_option('enable-tizen')
# Pass __TIZEN__ to the compiler
add_project_arguments('-D__TIZEN__=1', language: ['c', 'cpp'])
build_platform = 'tizen'
tizenVmajor = get_option('tizen-version-major')
add_project_arguments('-DTIZENVERSION='+tizenVmajor.to_string(), language: ['c', 'cpp'])
elif not meson.is_cross_build()
if cc.get_id() == 'clang' and cxx.get_id() == 'clang'
if build_machine.system() == 'darwin'
# Pass __MACOS__ to the compiler
add_project_arguments('-D__MACOS__=1', language: ['c', 'cpp'])
build_platform = 'macos'
so_ext = 'dylib'
endif
endif
endif
# Define warning flags for c and cpp
warning_flags = [
'-Wwrite-strings',
'-Wformat',
'-Wformat-nonliteral',
'-Wformat-security',
'-Winit-self',
'-Waddress',
'-Wno-multichar',
'-Wvla',
'-Wpointer-arith'
]
warning_c_flags = [
'-Wmissing-declarations',
'-Wmissing-include-dirs',
'-Wmissing-prototypes',
'-Wnested-externs',
'-Waggregate-return',
'-Wold-style-definition',
'-Wdeclaration-after-statement'
]
# Setup warning flags for c and cpp
foreach extra_arg : warning_flags
if cc.has_argument (extra_arg)
add_project_arguments([extra_arg], language: 'c')
endif
if cxx.has_argument (extra_arg)
add_project_arguments([extra_arg], language: 'cpp')
endif
endforeach
foreach extra_arg : warning_c_flags
if cc.has_argument (extra_arg)
add_project_arguments([extra_arg], language: 'c')
endif
endforeach
gst_api_verision = '1.0'
# Set install path
nnstreamer_prefix = get_option('prefix')
nnstreamer_libdir = join_paths(nnstreamer_prefix, get_option('libdir'))
nnstreamer_bindir = join_paths(nnstreamer_prefix, get_option('bindir'))
nnstreamer_includedir = join_paths(nnstreamer_prefix, get_option('includedir'))
nnstreamer_inidir = join_paths(nnstreamer_prefix, get_option('sysconfdir'))
# join_paths drops first arg if second arg is absolute path.
# nnstreamer plugins path
plugins_install_dir = join_paths(nnstreamer_libdir, 'gstreamer-' + gst_api_verision)
# nnstreamer sub-plugins path
subplugin_install_prefix = join_paths(nnstreamer_prefix, 'lib', 'nnstreamer')
filter_subplugin_install_dir = join_paths(subplugin_install_prefix, 'filters')
decoder_subplugin_install_dir = join_paths(subplugin_install_prefix, 'decoders')
customfilter_install_dir = join_paths(subplugin_install_prefix, 'customfilters')
converter_subplugin_install_dir = join_paths(subplugin_install_prefix, 'converters')
extra_install_dir = join_paths(subplugin_install_prefix, 'extra')
unittest_base_dir = join_paths(nnstreamer_bindir, 'unittest-nnstreamer')
# Set default configuration
nnstreamer_conf = configuration_data()
nnstreamer_conf.set('VERSION', meson.project_version())
nnstreamer_conf.set('PREFIX', nnstreamer_prefix)
nnstreamer_conf.set('EXEC_PREFIX', nnstreamer_bindir)
nnstreamer_conf.set('LIB_INSTALL_DIR', nnstreamer_libdir)
nnstreamer_conf.set('GST_INSTALL_DIR', plugins_install_dir)
nnstreamer_conf.set('INCLUDE_INSTALL_DIR', nnstreamer_includedir)
nnstreamer_conf.set('SUBPLUGIN_INSTALL_PREFIX', subplugin_install_prefix)
# Set framework priority about model file extension when automatically selecting framework for tensor filter.
nnstreamer_conf.set('FRAMEWORK_PRIORITY_TFLITE', get_option('framework-priority-tflite'))
nnstreamer_conf.set('FRAMEWORK_PRIORITY_NB', get_option('framework-priority-nb'))
nnstreamer_conf.set('FRAMEWORK_PRIORITY_BIN', get_option('framework-priority-bin'))
# Set the alias for backward compatibility
nnstreamer_conf.set('TRIX_ENGINE_ALIAS', get_option('trix-engine-alias'))
# Define default conf file
add_project_arguments('-DNNSTREAMER_CONF_FILE="' + join_paths(nnstreamer_inidir, 'nnstreamer.ini') + '"', language: 'c')
# Dependencies
glib_dep = dependency('glib-2.0')
gobject_dep = dependency('gobject-2.0')
gmodule_dep = dependency('gmodule-2.0')
gio_dep = dependency('gio-2.0')
gst_dep = dependency('gstreamer-' + gst_api_verision)
gst_base_dep = dependency('gstreamer-base-' + gst_api_verision)
gst_controller_dep = dependency('gstreamer-controller-' + gst_api_verision)
gst_video_dep = dependency('gstreamer-video-' + gst_api_verision)
gst_audio_dep = dependency('gstreamer-audio-' + gst_api_verision)
gst_app_dep = dependency('gstreamer-app-' + gst_api_verision)
gst_check_dep = dependency('gstreamer-check-' + gst_api_verision)
libm_dep = cc.find_library('m') # cmath library
libdl_dep = cc.find_library('dl') # DL library
thread_dep = dependency('threads') # pthread for tensorflow-lite
# Protobuf
protobuf_dep = dependency('protobuf', version: '>= 3.6.1', required: false)
# Flatbuffers compiler and libraries
flatc = find_program('flatc', required : get_option('flatbuf-support'))
flatbuf_dep = disabler()
flatbuf_version_check_dep = disabler()
if flatc.found()
flatc_ver = run_command(flatc, '--version').stdout().split()[2]
flatbuf_dep = dependency('flatbuffers', version: flatc_ver,
required : get_option('flatbuf-support'))
flatbuf_version_check_dep = dependency('flatbuffers', version: '>=2.0.0',
required : get_option('flatbuf-support'))
endif
# Protobuf compiler
pb_comp = find_program('protoc', required: get_option('protobuf-support'))
#orc
pg_orcc = find_program('orcc', required: get_option('orcc-support'))
orc_dep = dependency('orc-0.4', version: '>= 0.4.17', required: get_option('orcc-support'))
## nnfw
nnfw_dep = dependency('', required: false)
if not get_option('nnfw-runtime-support').disabled()
nnfw_dep = dependency('nnfw', required: false)
if not nnfw_dep.found()
nnfw_dep = cc.find_library('nnfw-dev', required: get_option('nnfw-runtime-support'))
endif
endif
# snpe
snpe_dep = dependency('', required: false)
if not get_option('snpe-support').disabled()
# Check whether the platform supports snpe
snpe_dep = dependency('snpe', required: false)
if (not snpe_dep.found())
# Check whether $SNPE_ROOT (where SNPE SDK is located) is set.
cmd = run_command('sh', '-c', 'echo $SNPE_ROOT')
SNPE_ROOT = cmd.stdout().strip()
if SNPE_ROOT != ''
message('Got $SNPE_ROOT: @0@'.format(SNPE_ROOT))
snpe_dir_not_exist = run_command('[', '-d', SNPE_ROOT, ']').returncode()
if snpe_dir_not_exist != 0
error('@0@ does not exists'.format(SNPE_ROOT))
endif
snpe_lib = cxx.find_library('libSNPE',
dirs: join_paths(SNPE_ROOT, 'lib/x86_64-linux-clang'),
required: true
)
snpe_incdir = include_directories(join_paths(SNPE_ROOT, 'include/zdl'))
snpe_dep = declare_dependency(
dependencies: snpe_lib,
include_directories: snpe_incdir
)
endif
endif
endif
# tensorrt
nvinfer_dep = dependency('', required: false)
nvparsers_dep = dependency('', required: false)
cuda_dep = dependency('', required: false)
cudart_dep = dependency('', required: false)
if not get_option('tensorrt-support').disabled()
# check available cuda versions (11.0 and 10.2 are recommended)
cuda_vers = [
'11.0',
'10.2',
'10.1',
'10.0',
'9.2',
'9.1',
'9.0'
]
foreach ver : cuda_vers
cuda_dep = dependency('cuda-' + ver, required: false)
cudart_dep = dependency('cudart-' + ver, required: false)
if cuda_dep.found() and cudart_dep.found()
if ver != '11.0' and ver != '10.2'
message('Warning: the recommended cuda version is at least 10.2')
endif
break
endif
endforeach
nvinfer_lib = cxx.find_library('nvinfer', required: false)
if nvinfer_lib.found() and cxx.check_header('NvInfer.h')
nvinfer_dep = declare_dependency(dependencies: nvinfer_lib)
endif
nvparsers_lib = cxx.find_library('nvparsers', required: false)
if nvparsers_lib.found() and cxx.check_header('NvUffParser.h')
nvparsers_dep = declare_dependency(dependencies: nvparsers_lib)
endif
endif
# gRPC
grpc_dep = dependency('', required: false)
gpr_dep = dependency('', required: false)
grpcpp_dep = dependency('', required: false)
if not get_option('grpc-support').disabled()
grpc_dep = dependency('grpc', required: false)
gpr_dep = dependency('gpr', required: false)
grpcpp_dep = dependency('grpc++', required: false)
endif
# mqtt (paho.mqtt.c)
pahomqttc_dep = dependency('', required: false)
if not get_option('mqtt-support').disabled()
pahomqttc_dep = dependency('paho-mqtt-c', required: false)
if (not pahomqttc_dep.found() and get_option('mqtt-support').enabled())
message('mqtt-support is enabled while its pkgconfig is not found. Hardcoded build configuration is used.')
pahomqttc_lib1 = cxx.find_library('paho-mqtt3a', required: true)
pahomqttc_lib2 = cxx.find_library('paho-mqtt3c', required: true)
pahomqttc_lib3 = cxx.find_library('paho-mqtt3as', required: true)
pahomqttc_lib4 = cxx.find_library('paho-mqtt3cs', required: true)
pahomqttc_dep = declare_dependency(dependencies: [pahomqttc_lib1, pahomqttc_lib2, pahomqttc_lib3, pahomqttc_lib4])
endif
endif
# armnn
armnn_dep = dependency('', required: false)
if not get_option('armnn-support').disabled()
armnn_dep = dependency('armnn', required: false)
if (not armnn_dep.found())
armnn_dep = dependency('Armnn', required: false)
endif
if (not armnn_dep.found())
armnn_lib = cxx.find_library('armnn', required: false)
if (armnn_lib.found() and cxx.check_header('armnn/ArmNN.hpp'))
armnn_dep = declare_dependency(dependencies: [ armnn_lib, thread_dep ])
endif
endif
endif
# features registration to be controlled
#
# register feature as follows
# <string: feature_name> : {
# target: <string>, extra_deps: <list>, project_args: <dict>,
# project_args_disabled: <string>, extra_args: <dict: meson variables to be registered>,
features = {
'video-support': {
'project_args_disabled': { 'NO_VIDEO': 1 },
},
'audio-support': {
'project_args_disabled': { 'NO_AUDIO': 1 },
},
'tf-support': {
'target': 'tensorflow',
'extra_deps': [ protobuf_dep ],
'project_args': { 'ENABLE_TENSORFLOW': 1 },
},
'tflite-support': {
'target': 'tensorflow-lite',
'project_args': { 'ENABLE_TENSORFLOW_LITE': 1 }
},
'tflite2-support': {
'target': 'tensorflow2-lite',
'project_args': { 'ENABLE_TENSORFLOW2_LITE': 1 }
},
'pytorch-support': {
'target': 'pytorch',
'project_args': { 'ENABLE_PYTORCH': 1 }
},
'caffe2-support': {
'target': 'caffe2',
'project_args': { 'ENABLE_CAFFE2': 1 }
},
'mvncsdk2-support': {
'target': 'libmvnc',
'project_args': { 'ENABLE_MOVIDIUS_NCSDK2' : 1}
},
'nnfw-runtime-support': {
'extra_deps': [ nnfw_dep ],
'project_args': { 'ENABLE_NNFW_RUNTIME': 1 }
},
'armnn-support': {
'extra_deps': [ armnn_dep ],
'project_args': { 'ENABLE_ARMNN': 1 }
},
'orcc-support': {
'extra_deps': [ orc_dep, pg_orcc ],
'project_args': {'HAVE_ORC': 1},
'project_args_disabled': { 'DISABLE_ORC': 1 },
'extra_args': {'orcc_args': [pg_orcc, '--include', 'glib.h'] }
},
'snpe-support': {
'extra_deps': [ snpe_dep ],
'project_args': { 'ENABLE_SNPE' : 1 },
},
'flatbuf-support': {
'extra_deps': [ flatc, flatbuf_dep, flatbuf_version_check_dep ],
'project_args': { 'ENABLE_FLATBUF': 1 }
},
'protobuf-support': {
'extra_deps': [ pb_comp, protobuf_dep ],
'project_args': { 'ENABLE_PROTOBUF': 1 }
},
'tensorrt-support': {
'extra_deps': [ nvinfer_dep, nvparsers_dep, cuda_dep, cudart_dep ],
'project_args': { 'ENABLE_TENSORRT': 1 }
},
'grpc-support': {
'extra_deps': [ grpc_dep, gpr_dep, grpcpp_dep ],
'project_args': { 'ENABLE_GRPC': 1 }
},
'lua-support': {
# TODO: support various Lua versions
'target': 'lua',
'target_alt': 'lua5.1',
'project_args': { 'ENABLE_LUA': 1 }
},
'mqtt-support': {
'extra_deps': [ pahomqttc_dep ],
'project_args': { 'ENABLE_MQTT': 1 }
},
'tvm-support': {
'target': 'tvm_runtime',
'project_args': { 'ENABLE_TVM' : 1 }
}
}
project_args = {}
# This section controls the flow of feature registration.
foreach feature_name, data : features
variable_name = feature_name.underscorify()
variable_deps_name = variable_name + '_deps'
variable_available_name = variable_name + '_is_available'
_available = true
target = data.get('target', '')
_deps = []
if target != ''
target_dep = dependency(target, required: false)
if not target_dep.found()
target_alt = data.get('target_alt', '')
if target_alt != ''
target_dep = dependency(target_alt, required: false)
endif
endif
if get_option(feature_name).enabled() and not target_dep.found()
error('@0@ is enabled but unable to find the target dependency'.format(feature_name))
endif
_deps += target_dep
endif
_deps += data.get('extra_deps', [])
foreach dep : _deps
if not dep.found()
_available = false
endif
endforeach
if get_option(feature_name).disabled() or not _available
project_args += data.get('project_args_disabled', {})
set_variable(variable_deps_name, [])
set_variable(variable_available_name, false)
message('@0@ is off because it is either not available or disabled'.format(feature_name))
continue
endif
# handle when available
project_args += data.get('project_args', {})
set_variable(variable_deps_name, _deps)
set_variable(variable_available_name, true)
foreach name, value : data.get('extra_args', {})
set_variable(variable_name + '_' + name, value)
endforeach
endforeach
#Definitions enabled by meson_options.txt
message('Following project_args are going to be included')
message(project_args)
foreach name, value: project_args
add_project_arguments('-D@0@=@1@'.format(name, value), language: ['c', 'cpp'])
endforeach
# Add redundant declaration flag when caffe2 and pytorch both are disabled
if not (pytorch_support_is_available and caffe2_support_is_available)
redundant_decls_flag = '-Wredundant-decls'
if cc.has_argument (redundant_decls_flag)
add_project_arguments([redundant_decls_flag], language: 'c')
endif
if cxx.has_argument (redundant_decls_flag)
add_project_arguments([redundant_decls_flag], language: 'cpp')
endif
endif
# Python3
have_python3 = false
if not get_option('python3-support').disabled()
# Check python 3.x
python3_dep = dependency('python3', required: false)
if python3_dep.found() and python3_dep.version().version_compare('>= 3.8')
# The name of .pc file provides C/CXX/LD_FLAGS for Python C API has been changed since v3.8
python3_dep = dependency('python3-embed', required: false)
endif
if python3_dep.found()
pg_pkgconfig = find_program('pkg-config')
python3_inc_args = []
python3_inc_args += run_command(pg_pkgconfig, ['python3', '--cflags']).stdout().strip().split()
python3_inc_args += run_command('python3', ['-c', 'import site\nfor i in site.getsitepackages(): print("-I" + i + "/numpy/core/include")']).stdout().strip().split()
python3_inc_args += '-I' + run_command('python3', ['-m', 'site', '--user-site']).stdout().strip() + '/numpy/core/include'
python3_inc_valid_args = []
foreach python3_inc_arg : python3_inc_args
if cxx.has_argument(python3_inc_arg) and \
cxx.check_header('numpy/arrayobject.h', args : python3_inc_arg, dependencies : python3_dep)
python3_inc_valid_args += python3_inc_arg
have_python3 = true
break
endif
endforeach
if have_python3
python3_dep = declare_dependency(dependencies: python3_dep,
compile_args : python3_inc_valid_args)
else
warning('Found python3, but failed to find numpy.')
warning('Disable nnstreamer-python3.')
python3_dep = disabler()
endif
endif
if get_option('python3-support').enabled() and not have_python3
error('Cannot find python3 with numpy support')
endif
endif
# Set sub-plugin priority
tflite_subplugin_list = []
if tflite2_support_is_available
tflite_subplugin_list += 'tensorflow2-lite'
endif
if tflite_support_is_available
tflite_subplugin_list += 'tensorflow1-lite'
endif
nnstreamer_conf.set('TFLITE_SUBPLUGIN_PRIORITY', ','.join(tflite_subplugin_list))
# Set configuration to install .ini
nnstreamer_install_conf = configuration_data()
nnstreamer_install_conf.merge_from(nnstreamer_conf)
nnstreamer_install_conf.set('ENABLE_ENV_VAR', get_option('enable-env-var'))
nnstreamer_install_conf.set('ENABLE_SYMBOLIC_LINK', get_option('enable-symbolic-link'))
nnstreamer_install_conf.set('TORCH_USE_GPU', get_option('enable-pytorch-use-gpu'))
# Element restriction
restriction_config = ''
if get_option('enable-element-restriction')
restriction_config = '''[element-restriction]
enable_element_restriction=True
restricted_elements=''' + get_option('restricted-elements')
endif
nnstreamer_install_conf.set('ELEMENT_RESTRICTION_CONFIG', restriction_config)
nnstreamer_install_conf.set('TEST_TEMPLATE_DIR', unittest_base_dir) # TEST_TEMPLATE_DIR will be empty if `install-test` is false
# Install .ini
configure_file(input: 'nnstreamer.ini.in', output: 'nnstreamer.ini',
install_dir: nnstreamer_inidir,
configuration: nnstreamer_install_conf
)
# Install .pc
configure_file(input: 'nnstreamer.pc.in', output: 'nnstreamer.pc',
install_dir: join_paths(nnstreamer_libdir, 'pkgconfig'),
configuration: nnstreamer_install_conf
)
configure_file(input: 'nnstreamer-internal.pc.in', output: 'nnstreamer-internal.pc',
install_dir: join_paths(nnstreamer_libdir, 'pkgconfig'),
configuration: nnstreamer_install_conf
)
# Build nnstreamer (common, plugins)
subdir('gst')
# Build ext subplugins
subdir('ext')
# Build Utility
subdir('tools/development')
# Build unittests
if get_option('enable-test')
# ini file generator template for the plugins from other repository
configure_file(input: 'nnstreamer.ini.in', output: 'nnstreamer-test.ini.in',
install: get_option('install-test'),
install_dir: unittest_base_dir,
copy: true,
)
# temporary ini file for test, enable env variables.
nnstreamer_test_conf = configuration_data()
nnstreamer_test_conf.merge_from(nnstreamer_conf)
nnstreamer_test_conf.set('ENABLE_ENV_VAR', true)
nnstreamer_test_conf.set('ENABLE_SYMBOLIC_LINK', false)
nnstreamer_test_conf.set('TORCH_USE_GPU', false)
nnstreamer_test_conf.set('ELEMENT_RESTRICTION_CONFIG', '')
configure_file(input: 'nnstreamer.ini.in', output: 'nnstreamer-test.ini',
install: get_option('install-test'),
install_dir: unittest_base_dir,
configuration: nnstreamer_test_conf
)
path_gst_plugin = join_paths(meson.build_root(), 'gst')
path_ext_plugin = join_paths(meson.build_root(), 'ext')
path_nns_conf = join_paths(meson.build_root(), 'nnstreamer-test.ini')
path_nns_plugin_prefix = join_paths(path_ext_plugin, 'nnstreamer')
path_nns_plugin_filters = join_paths(path_nns_plugin_prefix, 'tensor_filter')
path_nns_plugin_decoders = join_paths(path_nns_plugin_prefix, 'tensor_decoder')
path_nns_plugin_converters = join_paths(path_nns_plugin_prefix, 'tensor_converter')
testenv = environment()
testenv.set('GST_PLUGIN_PATH', path_gst_plugin + ':' + path_ext_plugin)
testenv.set('NNSTREAMER_CONF', path_nns_conf)
testenv.set('NNSTREAMER_FILTERS', path_nns_plugin_filters)
testenv.set('NNSTREAMER_DECODERS', path_nns_plugin_decoders)
testenv.set('NNSTREAMER_CONVERTERS', path_nns_plugin_converters)
testenv.set('NNSTREAMER_SOURCE_ROOT_PATH', meson.source_root())
testenv.set('NNSTREAMER_BUILD_ROOT_PATH', meson.build_root())
subdir('tests')
endif