From: Sergi Granell Date: Fri, 15 Jul 2016 13:14:09 +0000 (+0200) Subject: package/weston: Add demo clients install option X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1c7e22c7994c99dbdc45bf6fcf17f457bea1bbdd;p=buildroot.git package/weston: Add demo clients install option Signed-off-by: Sergi Granell Reviewed-by: "Yann E. MORIN" Signed-off-by: Thomas Petazzoni --- diff --git a/package/weston/Config.in b/package/weston/Config.in index 0812279cf7..c1eb7dadb2 100644 --- a/package/weston/Config.in +++ b/package/weston/Config.in @@ -104,4 +104,9 @@ config BR2_PACKAGE_WESTON_XWAYLAND comment "XWayland support needs libepoxy and X.org enabled" depends on !BR2_PACKAGE_XORG7 || !BR2_PACKAGE_LIBEPOXY +config BR2_PACKAGE_WESTON_DEMO_CLIENTS + bool "demo clients" + help + This enables the installation of Weston's demo clients. + endif diff --git a/package/weston/weston.mk b/package/weston/weston.mk index dfcb9acbf5..31c9281bb8 100644 --- a/package/weston/weston.mk +++ b/package/weston/weston.mk @@ -142,4 +142,10 @@ else WESTON_CONF_OPTS += --disable-junit-xml endif +ifeq ($(BR2_PACKAGE_WESTON_DEMO_CLIENTS),y) +WESTON_CONF_OPTS += --enable-demo-clients-install +else +WESTON_CONF_OPTS += --disable-demo-clients-install +endif + $(eval $(autotools-package))