gstreamer/validate/plugins/extra_checks/meson.build
Thibault Saunier b1b696017c validate: Add a plugin with potential extra checks
And add a way to check that a configured number of instances of a particular
element is used, this is useful to make sure for example that playing a
particular stream doesn't lead to several decoders being instanciated.
2017-06-16 17:36:34 -04:00

10 lines
378 B
Meson

shared_library('gstextrachecks',
'gstvalidateextrachecks.c',
include_directories : inc_dirs,
c_args: ['-DHAVE_CONFIG_H'],
install: true,
install_dir: validate_plugins_install_dir,
dependencies : [gst_dep, gst_pbutils_dep],
link_with : [gstvalidate]
)