Meson: also build and install gst-stats-1.0 and it's man page.
[platform/upstream/gstreamer.git] / tools / meson.build
1 tools = [ 'gst-inspect', 'gst-launch', 'gst-stats', 'gst-typefind' ]
2
3 foreach tool : tools
4   exe_name = '@0@-@1@'.format(tool, apiversion)
5   src_file = '@0@.c'.format(tool)
6
7   executable(exe_name,
8     src_file,
9     install: true,
10     dependencies : [glib_dep, gobject_dep, gmodule_dep, mathlib, gst_dep],
11     link_with: [printf_lib],
12     c_args: gst_c_args,
13   )
14
15   man_page = '@0@-1.0.1'.format(tool)
16   install_man(man_page)
17 endforeach