mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 11:51:34 +00:00
32 lines
876 B
Meson
32 lines
876 B
Meson
if get_option('onnx').disabled()
|
|
subdir_done()
|
|
endif
|
|
|
|
|
|
onnxrt_dep = dependency('libonnxruntime', version : '>= 1.16.1', required : get_option('onnx'))
|
|
|
|
extra_args = []
|
|
extra_deps = []
|
|
if gstcuda_dep.found()
|
|
extra_args += ['-DHAVE_CUDA']
|
|
extra_deps += [gstcuda_dep]
|
|
endif
|
|
|
|
if onnxrt_dep.found()
|
|
gstonnx = library('gstonnx',
|
|
'gstonnx.c',
|
|
'decoders/gstssdobjectdetector.c',
|
|
'gstonnxinference.cpp',
|
|
'gstonnxclient.cpp',
|
|
'tensor/gsttensormeta.c',
|
|
c_args : gst_plugins_bad_args + extra_args,
|
|
cpp_args : gst_plugins_bad_args + extra_args,
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc, libsinc, cuda_stubinc],
|
|
dependencies : [gstbase_dep, gstvideo_dep, gstanalytics_dep, onnxrt_dep,
|
|
libm, gio_dep] + extra_deps,
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstonnx]
|
|
endif
|