deb+rpm: build OMEdit against qt6 with Quick3D - #65
Merged
Merged
Conversation
OMEdit renders the animation windows with Qt Quick 3D since
OpenModelica#16699, so every qt6 target needs the module or qmake
stops with "Unknown module(s) in QT: quick3d".
The deb side moves off qt5 entirely: configure gets --with-qt6 and
the Build-Depends carry the qt6 stack, so bookworm, jammy and noble
no longer depend on the codename list in common/m4/qmake.m4 to pick
a Qt. jammy is Qt 6.2.4 and still uses the pre-6.4 binary names,
hence the alternatives; QtHttpServer does not exist there at all,
and OMEdit already guards it with qtHaveModule(httpserver).
omedit also gains the QML plugins. The scene QML is handed to
QQmlComponent as a string, so the plugins are dlopened and
${shlibs:Depends} never sees them. Debian only split
qml6-module-qtquick3d out of libqt6quick3d6 in 6.6, so the older
suites need the alternative there too.
flex and bison come over from the trixie and resolute images in
apt-build, which installed them outside the .dsc.
OpenSceneGraph is unused now that the animation windows no longer
render with it.
Assisted-by: Claude Opus 5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
OMEdit renders the animation windows with Qt Quick 3D since OpenModelica#16699, so every qt6 target needs the module or qmake stops with "Unknown module(s) in QT: quick3d".
The deb side moves off qt5 entirely: configure gets --with-qt6 and the Build-Depends carry the qt6 stack, so bookworm, jammy and noble no longer depend on the codename list in common/m4/qmake.m4 to pick a Qt. jammy is Qt 6.2.4 and still uses the pre-6.4 binary names, hence the alternatives; QtHttpServer does not exist there at all, and OMEdit already guards it with qtHaveModule(httpserver).
omedit also gains the QML plugins. The scene QML is handed to QQmlComponent as a string, so the plugins are dlopened and ${shlibs:Depends} never sees them. Debian only split qml6-module-qtquick3d out of libqt6quick3d6 in 6.6, so the older suites need the alternative there too.
flex and bison come over from the trixie and resolute images in apt-build, which installed them outside the .dsc.
OpenSceneGraph is unused now that the animation windows no longer render with it.
Assisted-by: Claude Opus 5