gstreamer/plugins/tracers/meson.build

28 lines
553 B
Meson
Raw Normal View History

2016-09-26 21:21:19 +00:00
gst_tracers_sources = [
'gstlatency.c',
'gstleaks.c',
'gststats.c',
'gsttracers.c',
]
if not disable_gst_debug
2016-12-09 22:28:22 +00:00
gst_tracers_sources += ['gstlog.c']
endif
2016-09-26 21:21:19 +00:00
if have_getrusage
gst_tracers_sources += ['gstrusage.c']
endif
tracers_args = gst_c_args + ['-DGST_USE_UNSTABLE_API']
2016-09-26 21:21:19 +00:00
gst_tracers = library('gstcoretracers',
gst_tracers_sources,
c_args : tracers_args,
2016-09-26 21:21:19 +00:00
include_directories : [configinc],
dependencies : [gst_dep],
2016-09-26 21:21:19 +00:00
link_with : printf_lib,
install : true,
install_dir : '@0@/gstreamer-1.0'.format(get_option('libdir')),
)