mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-28 03:00:35 +00:00
85179a674f
And remove the local implementation of it. https://bugzilla.gnome.org/show_bug.cgi?id=772555
24 lines
496 B
Meson
24 lines
496 B
Meson
gst_tracers_sources = [
|
|
'gstlatency.c',
|
|
'gstleaks.c',
|
|
'gststats.c',
|
|
'gsttracers.c',
|
|
'gstlog.c'
|
|
]
|
|
|
|
if have_getrusage
|
|
gst_tracers_sources += ['gstrusage.c']
|
|
endif
|
|
|
|
tracers_args = gst_c_args + ['-DGST_USE_UNSTABLE_API']
|
|
|
|
gst_tracers = library('gstcoretracers',
|
|
gst_tracers_sources,
|
|
c_args : tracers_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gst_dep],
|
|
link_with : printf_lib,
|
|
install : true,
|
|
install_dir : '@0@/gstreamer-1.0'.format(get_option('libdir')),
|
|
)
|
|
|