-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build: Support cmake to build and install #24
Conversation
This can help to support yocto For the record I built it using export CFLAGS='-I${sysroot}/usr/local/include/ -DLV_CONF_INCLUDE_SIMPLE=1' cmake . && make && make install Relate-to: lvgl/lvgl#2534 Forwarded: lvgl#24 Signed-off-by: Philippe Coval <philippe.coval@astrolabe.coop>
bfbe665
to
53d2332
Compare
This repo was just merged into the main lvgl repo. |
maybe not let me check again once my other cmake files changes are merged |
well It's desirable for a project which is using only latest release, btw any roadmap for upcoming one ? |
The reason is that default bitbake recipe curently relies on default settings (except wayland) so it could be helpful to support this as thirdparty lib until released. Relate-to: lvgl/lvgl#2534 |
Can this change be merged It wont cause any issue and I might upstream bitbake recipe since openembedded's lvgl uses default config with png disabled. Relate-to: lvgl/lvgl#2534 |
Alright, merging.
We are just thinking about fine-tuning our release policy (See lvgl/lvgl#2573) |
May I request one last thing, can master branch be tagged ? At worst case you can tag "v0.0.0" the intitial commit ae88a69 |
It doesn't have to be the last 🙂 I've tagged the the current HEAD with v8.0.2. Is it ok? |
perfect, let's track this openembedded/meta-openembedded#454 BTW, feel to remind me to update other recipes if I miss new tags on packaged projects in OE |
This can help to support yocto
For the record I built it using
export CFLAGS='-I${sysroot}/usr/local/include/ -DLV_CONF_INCLUDE_SIMPLE=1'
cmake . && make && make install
Relate-to: lvgl/lvgl#2534
Signed-off-by: Philippe Coval philippe.coval@astrolabe.coop