From: Scott Murray Date: Mon, 14 Feb 2022 23:22:57 +0000 (-0500) Subject: libqtappfw: enable building mpd based mediaplayer support X-Git-Tag: 12.93.0~11 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=191a271822f4747f1c13e71c70d42817e746a1fd;p=AGL%2Fmeta-agl-demo.git libqtappfw: enable building mpd based mediaplayer support Update libqtappfw recipe to pull in libmpdclient dependency for building the reworked mediaplayer support, and also add a RRECOMMENDS definition that pulls in bluez5, connman, and mpd to make the relationship more explicit. The intent is to split the libqtappfw-X libraries into separate packages with some follow-on rework and have these dependencies be more fine-grained at that point. Bug-AGL: SPEC-4182 Signed-off-by: Scott Murray Change-Id: If7fcd57dab89a22dfee81017d0411854b1f16bda --- diff --git a/recipes-demo/libqtappfw/libqtappfw_git.bb b/recipes-demo/libqtappfw/libqtappfw_git.bb index cc36e7184..43d9e8a60 100644 --- a/recipes-demo/libqtappfw/libqtappfw_git.bb +++ b/recipes-demo/libqtappfw/libqtappfw_git.bb @@ -6,7 +6,14 @@ SECTION = "libs" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=ae6497158920d9524cf208c09cc4c984" -DEPENDS = "qtbase qtdeclarative glib-2.0 bluez-glib connman-glib" +DEPENDS = " \ + qtbase \ + qtdeclarative \ + glib-2.0 \ + bluez-glib \ + connman-glib \ + libmpdclient \ +" SRC_URI = "git://gerrit.automotivelinux.org/gerrit/src/libqtappfw;protocol=https;branch=${AGL_BRANCH}" SRCREV = "5ef90db242ad29c9772f2237b477c58ef65545c7" @@ -17,4 +24,6 @@ PV = "2.0+git${SRCPV}" inherit cmake_qt5 pkgconfig +RRECOMMENDS:${PN} += "bluez5 connman mpd" + BBCLASSEXTEND = "nativesdk"