mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 02:49:59 +00:00
38ec95460f
They should only need to link to libgstreamer.
19 lines
368 B
Meson
19 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
|