gstreamer/tests/benchmarks/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

20 lines
368 B
Meson

benchmarks = [
'caps',
'capsnego',
'complexity',
'controller',
'init',
'mass-elements',
'gstpollstress',
'gstpoolstress',
'gstclockstress',
'gstbufferstress',
]
foreach b : benchmarks
executable(b, '@0@.c'.format(b),
c_args : gst_c_args,
dependencies : [gobject_dep, gmodule_dep, glib_dep, gst_dep, gst_controller_dep],
)
endforeach