mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
examples: don't try and build jack examples if jack was disabled
Fixes meson build ERROR: Unknown variable "libjack_dep". Fixes #1301 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2658>
This commit is contained in:
parent
9f5f465cc2
commit
1d31f9acaf
1 changed files with 4 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
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],
|
||||
|
|
Loading…
Reference in a new issue