29 lines
992 B
Plaintext
29 lines
992 B
Plaintext
#
|
|
# Copyright (c) 2020-2024 Joel Winarske. All rights reserved.
|
|
#
|
|
|
|
# We have a conf and classes directory, append to BBPATH
|
|
BBPATH .= ":${LAYERDIR}"
|
|
|
|
BBFILES += " \
|
|
${LAYERDIR}/recipes*/*/*.bb \
|
|
${LAYERDIR}/recipes*/*/*.bbappend \
|
|
${LAYERDIR}/recipes*/*/*/*.bb \
|
|
${LAYERDIR}/recipes*/*/*/*.bbappend \
|
|
"
|
|
|
|
BBFILE_COLLECTIONS += "meta-flutter-apps"
|
|
BBFILE_PATTERN_meta-flutter-apps := "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_meta-flutter-apps = "12"
|
|
|
|
LAYERSERIES_COMPAT_meta-flutter-apps = "zeus dunfell honister hardknott gatesgarth kirkstone"
|
|
|
|
BBFILES_DYNAMIC += " \
|
|
clang-layer:${LAYERDIR}/dynamic-layers/clang-layer/*/*/*.bb \
|
|
clang-layer:${LAYERDIR}/dynamic-layers/clang-layer/*/*/*/*.bb \
|
|
clang-layer:${LAYERDIR}/dynamic-layers/clang-layer/*/*/*.bbappend \
|
|
gnome-layer:${LAYERDIR}/dynamic-layers/gnome-layer/*/*/*.bb \
|
|
gnome-layer:${LAYERDIR}/dynamic-layers/gnome-layer/*/*/*/*.bb \
|
|
gnome-layer:${LAYERDIR}/dynamic-layers/gnome-layer/*/*/*.bbappend \
|
|
"
|