-
Notifications
You must be signed in to change notification settings - Fork 21
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
Add support for a wayland variant of Qt for Linux #266
base: main
Are you sure you want to change the base?
Conversation
spham-amzn
commented
Nov 21, 2024
- Remove unnecessary wrapper scripts build-linux-aarch64.sh and build-linux-x86.sh
- Add special build_config_wayland.json and Dockerfile.wayland to support the wayland variant
- Update docker_build_qt_linux.sh to support the environment option 'ENABLE_QT_WAYLAND' which is set in the Dockerfile
- Update docker_build_qt_linux.sh to support building the additional qtwayland package from source
- Remove unnecessary wrapper scripts build-linux-aarch64.sh and build-linux-x86.sh - Add special build_config_wayland.json and Dockerfile.wayland to support the wayland variant - Update docker_build_qt_linux.sh to support the environment option 'ENABLE_QT_WAYLAND' which is set in the Dockerfile - Update docker_build_qt_linux.sh to support building the additional qtwayland package from source Signed-off-by: Steve Pham <[email protected]>
Signed-off-by: Steve Pham <[email protected]>
We could try enabling both xcb and wayland QPA plugins |
…d wayland qpas Signed-off-by: Steve Pham <[email protected]>
Why do we disable EGL in QT here? Sorry for duplicate message, thought I could put a message on the code instead of a comment here |
I'm not sure on how building QT works so let me know if its just because it allows it to work or not but why are you enabling wayland-server? |
I don't remember, my guess is that we didn't want to build the eglfs plugin? |
Hmm, could we explicitly disable that and just allow normal EGL? |
Signed-off-by: Steve Pham <[email protected]>
Awesome, that did work but we should disable the compositor/server part of it as thats under GPL3 which isn't good and we dont need it, look at the info here. |
@@ -69,7 +69,6 @@ echo Configuring Qt ... | |||
-no-feature-getentropy \ | |||
-no-feature-statx \ | |||
-feature-wayland-server \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should remove the wayland server feature as its under GPLv3 and we don't need it
Signed-off-by: Steve Pham <[email protected]>
It's still enabling the compositor feature, maybe |