gstreamer/tools/meson.build
Nirbheek Chauhan 38ec95460f meson: Don't add static printf library to executables
They should only need to link to libgstreamer.
2018-07-25 16:02:06 +05:30

18 lines
446 B
Meson

tools = [ 'gst-inspect', 'gst-launch', 'gst-stats', 'gst-typefind' ]
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