mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
23 lines
596 B
Meson
23 lines
596 B
Meson
debugutilsbad_sources = [
|
|
'gstdebugspy.c',
|
|
'gsterrorignore.c',
|
|
'debugutilsbad.c',
|
|
'fpsdisplaysink.c',
|
|
'gstchecksumsink.c',
|
|
'gstchopmydata.c',
|
|
'gstcompare.c',
|
|
'gstfakevideosink.c',
|
|
'gstwatchdog.c',
|
|
'gsttestsrcbin.c',
|
|
]
|
|
|
|
gstdebugutilsbad = library('gstdebugutilsbad',
|
|
debugutilsbad_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep, gstvideo_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstdebugutilsbad, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstdebugutilsbad]
|