Welcome to mirror list, hosted at ThFree Co, Russian Federation.

meson.build « tools - github.com/GStreamer/gstreamer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e33811790e922b32f106676ee2a31e3c8245266 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
tools = ['gst-inspect', 'gst-stats', 'gst-typefind']

if gst_parse
  tools += ['gst-launch']
endif

foreach tool : tools
  exe_name = '@0@-@1@'.format(tool, apiversion)
  src_file = '@0@.c'.format(tool)

  executable(exe_name,
    src_file,
    install: true,
    include_directories : [configinc],
    dependencies : [glib_dep, gobject_dep, gmodule_dep, mathlib, gst_dep],
    c_args: gst_c_args,
  )

  man_page = '@0@-1.0.1'.format(tool)
  install_man(man_page)
endforeach