mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
28 lines
568 B
Meson
28 lines
568 B
Meson
|
debugutilsbad_sources = [
|
||
|
'gstdebugspy.c',
|
||
|
'gsterrorignore.c',
|
||
|
'debugutilsbad.c',
|
||
|
'fpsdisplaysink.c',
|
||
|
'gstchecksumsink.c',
|
||
|
'gstchopmydata.c',
|
||
|
'gstcompare.c',
|
||
|
'gstwatchdog.c',
|
||
|
]
|
||
|
|
||
|
debugutilsbad_headers = [
|
||
|
'gstchecksumsink.h',
|
||
|
'gstchopmydata.h',
|
||
|
'gstcompare.h',
|
||
|
'gstdebugspy.h',
|
||
|
'gstwatchdog.h',
|
||
|
]
|
||
|
|
||
|
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,
|
||
|
)
|