gstreamer/subprojects/gst-plugins-good/tests/examples/jack/meson.build
2022-06-24 16:00:37 +00:00

11 lines
274 B
Meson

if get_option('jack').disabled()
subdir_done()
endif
if libjack_dep.found()
executable('jack_client', 'jack_client.c',
dependencies: [gst_dep, gtk_dep, libjack_dep],
c_args: gst_plugins_good_args,
include_directories: [configinc],
install: false)
endif