From 1ad25b9039ef910dc444e50fd43245c31d9bcae9 Mon Sep 17 00:00:00 2001 From: Roger Zanoni Date: Fri, 23 Jun 2023 14:06:20 +0200 Subject: [wam][cef] Make it possible to use cef as a backend This changes enables switching between the chromium and cef backends on wam by passing the agl-cef feature to the agl-setup script. Bug-AGL: SPEC-3872 Signed-off-by: Roger Zanoni Change-Id: Ib5b4b139789ec8303fef0a210a7e8f2f724d0c00 --- recipes-wam/wam/wam.inc | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 recipes-wam/wam/wam.inc (limited to 'recipes-wam/wam/wam.inc') diff --git a/recipes-wam/wam/wam.inc b/recipes-wam/wam/wam.inc new file mode 100644 index 000000000..f78fcfe53 --- /dev/null +++ b/recipes-wam/wam/wam.inc @@ -0,0 +1,12 @@ +DEPENDS += " chromium " + +EXTRA_OECMAKE = "\ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=${prefix} \ + -DPLATFORM_NAME=${@'${DISTRO}'.upper().replace('-', '_')} \ + -DCHROMIUM_SRC_DIR=${STAGING_INCDIR}/chromium" + +do_install:append() { + install -v -D -m 644 ${WORKDIR}/WebAppMgr.env ${D}${sysconfdir}/default/WebAppMgr.env + sed -i -e 's#@WAM_EXE_DIR@#${bindir}#g' ${D}${systemd_system_unitdir}/WebAppMgr.service +} -- cgit 1.2.3-korg