gst-inspect: Print GstValueArray properties nicely
[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     link_with: [printf_lib],
13     c_args: gst_c_args,
14   )
15
16   man_page = '@0@-1.0.1'.format(tool)
17   install_man(man_page)
18 endforeach