I'm new to Yocto Project. The initial idea is to create a custom image based on core-image-full-cmdline
(this is with no windowing system) and generate a Qt5 SDK against this image.
So my target to be able to run Qt applications needs to have some headers & libraries installed, isn't ? What I must specify on my image recipe ?- Doing
$ bitbake my_image -c populate_sdk
will generatemy_image
with Qt5 support + SDK installer ?
As I understood, to get a Qt SDK the steps would be:
Download and add
meta-qt5
to bblayers.conf.Add to the image recipe against which you want to build the SDK:
inherit populate_sdk_qt5
- Configure the SDK build (add/remove features). <- Here I need help. I only want
EGLFS
support, no X11/Wayland and no Qtwebkit (and idk, maybe some other features that I'm not aware yet). bitbake my_image -c populate_sdk
My build got an error compiling wayland although I have this:
DISTRO_FEATURES_remove = "x11 wayland"