Skip to content
Snippets Groups Projects
Commit 218fea82 authored by Eberhard Stoll's avatar Eberhard Stoll
Browse files

add recipe for simple qt image

parent 85d6286d
Branches feat-alpha2
No related tags found
No related merge requests found
Pipeline #1565 failed
# Use settings from simple console image
require image-gen-console.bb
# Supported DISTRO_FEATURES:
# - gstreamer
# - wayland
SUMMARY = "A Qt image either with eglfs or wayland backend"
LICENSE = "MIT"
# Basic Qt packages
IMAGE_QT_BASE = ""
# Wayland extensions
IMAGE_QT_WAYLAND = "\
weston \
weston-init \
qtwayland \
qtwayland-plugins \
"
IMAGE_QT_WAYLAND_EXAMPLES = "\
weston-examples \
qtwayland-examples \
"
# Exceet applications
IMAGE_QT_EXCEET_DEMOS = "\
exceet-demo \
exceet-demo-slideshow \
animatedtiles \
"
########################################
##### Additional Qt PACKAGES ###########
########################################
IMAGE_INSTALL_append += "\
${IMAGE_QT_BASE} \
${IMAGE_QT_EXCEET_DEMOS} \
${@bb.utils.contains('DISTRO_FEATURES', 'gstreamer', 'packagegroup-gstreamer1-0', '', d)} \
${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '${IMAGE_QT_WAYLAND}', '', d)} \
${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '', 'autostart-eglfs', d)} \
"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment