mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
meson: bluez: Early terminate configure on Windows
This plugin is for linux bluetooth stack. So the early termination can save configure time on Windows (i.e., we can avoid glib subproject fallback)
This commit is contained in:
parent
3811d13269
commit
a93bf98245
1 changed files with 4 additions and 0 deletions
|
@ -7,6 +7,10 @@ bluez_sources = [
|
|||
'gstavrcputil.c',
|
||||
]
|
||||
|
||||
if host_system == 'windows'
|
||||
subdir_done()
|
||||
endif
|
||||
|
||||
bluez_dep = dependency('bluez', version : '>= 5.0', required : get_option('bluez'))
|
||||
gio_unix_dep = dependency('gio-unix-2.0', version : glib_req,
|
||||
fallback: ['glib', 'libgiounix_dep'],
|
||||
|
|
Loading…
Reference in a new issue