78ea0e03b83e0d8932d71edfc7ef28d4bddd9b16
[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     include_directories : [configinc],
11     dependencies : [glib_dep, gobject_dep, gmodule_dep, mathlib, gst_dep],
12     c_args: gst_c_args,
13   )
14
15   man_page = '@0@-1.0.1'.format(tool)
16   install_man(man_page)
17 endforeach