gstreamer/subprojects/gst-plugins-bad/ext/onnx/meson.build
Tim-Philipp Müller f1bb2c76c6 meson: update for dep.get_pkgconfig_variable() deprecation
... 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>
2021-10-20 11:20:44 +00:00

33 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