mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
14 lines
394 B
Meson
14 lines
394 B
Meson
tensordecoders_sources = [
|
|
'gsttensordecoders.c',
|
|
'gstssdobjectdetector.c'
|
|
]
|
|
|
|
gsttensordecoders = library('gsttensordecoders',
|
|
tensordecoders_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep, gstvideo_dep, gstanalytics_dep, gio_dep, libm],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gsttensordecoders]
|