gst-inspect: fix unused-const-variable error in windows
[platform/upstream/gstreamer.git] / tools / meson.build
1 tools = ['gst-inspect', 'gst-stats', 'gst-typefind']
2
3 if gst_parse
4   tools += ['gst-launch']
5 endif
6
7 foreach tool : tools
8   exe_name = '@0@-@1@'.format(tool, apiversion)
9   src_file = '@0@.c'.format(tool)
10
11   executable(exe_name,
12     src_file,
13     install: true,
14     include_directories : [configinc],
15     dependencies : [glib_dep, gobject_dep, gmodule_dep, mathlib, gst_dep],
16     c_args: gst_c_args,
17   )
18
19   man_page = '@0@-1.0.1'.format(tool)
20   install_man(man_page)
21 endforeach