blob: 725a25b284a051a5928290786565fb8820460e4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# We have a conf and classes directory, add to BBPATH
BBPATH .= ":${LAYERDIR}"
# We have recipes-* directories, add to BBFILES
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
${LAYERDIR}/recipes-*/*/*.bbappend"
BBFILE_COLLECTIONS += "agl-flutter-layer"
BBFILE_PATTERN_agl-flutter-layer = "^${LAYERDIR}/"
BBFILE_PRIORITY_agl-flutter-layer = "61"
LAYERVERSION_agl-flutter-layer = "1"
LAYERDEPENDS_agl-flutter-layer = "core flutter-layer"
LAYERRECOMMENDS_agl-flutter-layer = "flutter-apps-layer"
LAYERSERIES_COMPAT_agl-flutter-layer = "kirkstone"
BBFILES_DYNAMIC += " \
flutter-apps-layer:${LAYERDIR}/dynamic-layers/flutter-apps-layer/*/*/*/*.bbappend \
"
|