diff options
| author | Christophe Chapuis <chris.chapuis@gmail.com> | 2024-03-16 11:00:51 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-03-17 13:10:11 -0700 |
| commit | 9e136f0043148a0e382a58ec1e821944be047628 (patch) | |
| tree | 183c7e407cd9cc0a70c829b83cbb803901631ace /meta-oe | |
| parent | 910614b4b30537f7729fec5ea2ed742299e1875d (diff) | |
| download | meta-openembedded-9e136f0043148a0e382a58ec1e821944be047628.tar.gz | |
lvgl: install lv_conf.h
Add an install append to copy the generated lv_conf.h as part of the
lvgl package, so that it will be found and used by the recipes that
want to use lvgl.
Signed-off-by: Christophe Chapuis <chris.chapuis@gmail.com>
Reviewed-by: Marek Vasut <marex@denx.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe')
| -rw-r--r-- | meta-oe/recipes-graphics/lvgl/lvgl_9.0.0.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/lvgl/lvgl_9.0.0.bb b/meta-oe/recipes-graphics/lvgl/lvgl_9.0.0.bb index 8d08485089..3dbf818c82 100644 --- a/meta-oe/recipes-graphics/lvgl/lvgl_9.0.0.bb +++ b/meta-oe/recipes-graphics/lvgl/lvgl_9.0.0.bb | |||
| @@ -27,6 +27,11 @@ ALLOW_EMPTY:${PN} = "1" | |||
| 27 | PACKAGECONFIG ??= "drm" | 27 | PACKAGECONFIG ??= "drm" |
| 28 | require lv-conf.inc | 28 | require lv-conf.inc |
| 29 | 29 | ||
| 30 | do_install:append() { | ||
| 31 | install -d "${D}${includedir}/${PN}" | ||
| 32 | install -m 0644 "${S}/lv_conf.h" "${D}${includedir}/${PN}/lv_conf.h" | ||
| 33 | } | ||
| 34 | |||
| 30 | FILES:${PN}-dev += "\ | 35 | FILES:${PN}-dev += "\ |
| 31 | ${includedir}/${PN}/ \ | 36 | ${includedir}/${PN}/ \ |
| 32 | ${includedir}/${PN}/lvgl/ \ | 37 | ${includedir}/${PN}/lvgl/ \ |
