mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
f1bb2c76c6
... in favour of dep.get_variable('foo', ..) which in some cases allows for further cleanups in future since we can extract variables from pkg-config dependencies as well as internal dependencies using this mechanism. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1183>
32 lines
1 KiB
Meson
32 lines
1 KiB
Meson
if get_option('onnx').disabled()
|
|
subdir_done()
|
|
endif
|
|
|
|
|
|
onnxrt_dep = dependency('libonnxruntime',required : get_option('onnx'))
|
|
|
|
if onnxrt_dep.found()
|
|
onnxrt_include_root = onnxrt_dep.get_variable('includedir')
|
|
onnxrt_includes = [onnxrt_include_root / 'core/session', onnxrt_include_root / 'core']
|
|
onnxrt_dep_args = []
|
|
|
|
compiler = meson.get_compiler('cpp')
|
|
if compiler.has_header(onnxrt_include_root / 'core/providers/cuda/cuda_provider_factory.h')
|
|
onnxrt_dep_args = ['-DGST_ML_ONNX_RUNTIME_HAVE_CUDA']
|
|
endif
|
|
gstonnx = library('gstonnx',
|
|
'gstonnx.c',
|
|
'gstonnxelement.c',
|
|
'gstonnxobjectdetector.cpp',
|
|
'gstonnxclient.cpp',
|
|
c_args : gst_plugins_bad_args,
|
|
cpp_args: onnxrt_dep_args,
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc, libsinc, onnxrt_includes],
|
|
dependencies : [gstbase_dep, gstvideo_dep, onnxrt_dep, libm],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstonnx, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstonnx]
|
|
endif
|