summaryrefslogtreecommitdiff
path: root/plugins/tracers/meson.build
blob: 4ca273359a5b2875a13d60009f0972c19bcbd501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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']

unwind_dep = dependency('libunwind', required : false)
if unwind_dep.found()
  tracers_args += ['-DHAVE_UNWIND']
endif

if cc.has_header('execinfo.h') and cc.has_function('backtrace', prefix : '#include <execinfo.h>')
  tracers_args += ['-DHAVE_BACKTRACE']
endif

gst_tracers = library('gstcoretracers',
  gst_tracers_sources,
  c_args : tracers_args,
  include_directories : [configinc],
  dependencies : [gst_dep, unwind_dep],
  link_with : printf_lib,
  install : true,
  install_dir : '@0@/gstreamer-1.0'.format(get_option('libdir')),
)