mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
21 lines
476 B
Meson
21 lines
476 B
Meson
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
|