From: Seungha Yang Date: Mon, 20 May 2019 14:19:19 +0000 (+0900) Subject: meson: bluez: Early terminate configure on Windows X-Git-Tag: 1.16.2~73 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9b0c528e0262480fe0d751c1eb9810185bf4ca4f;p=platform%2Fupstream%2Fgst-plugins-bad.git 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) --- diff --git a/sys/bluez/meson.build b/sys/bluez/meson.build index 56bb104e7..9af9778c8 100644 --- a/sys/bluez/meson.build +++ b/sys/bluez/meson.build @@ -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'],