tracers: leaks: Use the new gst_debug_get_stack_trace
[platform/upstream/gstreamer.git] / plugins / tracers / meson.build
1 gst_tracers_sources = [
2   'gstlatency.c',
3   'gstleaks.c',
4   'gststats.c',
5   'gsttracers.c',
6   'gstlog.c'
7 ]
8
9 if have_getrusage
10   gst_tracers_sources += ['gstrusage.c']
11 endif
12
13 tracers_args = gst_c_args + ['-DGST_USE_UNSTABLE_API']
14
15 gst_tracers = library('gstcoretracers',
16   gst_tracers_sources,
17   c_args : tracers_args,
18   include_directories : [configinc],
19   dependencies : [gst_dep],
20   link_with : printf_lib,
21   install : true,
22   install_dir : '@0@/gstreamer-1.0'.format(get_option('libdir')),
23 )
24