-
Notifications
You must be signed in to change notification settings - Fork 93
CXX-Qt-build: Simplify QmlModule #1342
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
CXX-Qt-build: Simplify QmlModule #1342
Conversation
This is for the most part already covered by the .qrc function in CxxQtBuilder.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1342 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 75 75
Lines 13051 13051
=========================================
Hits 13051 13051 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
ddef965
to
48c87fd
Compare
As we now only allow a single QML module per builder, we can just pass it directly into the new function.
This is our version of qt_add_resources and replaces the previous qrc_files function in QmlModule
48c87fd
to
812d70d
Compare
This seems to have caused the linker errors we experienced in CI. Also fix the demo_threading build script, which had this issue.
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.
Looks good, lets keep iterating :-)
Related to #1125