-
Notifications
You must be signed in to change notification settings - Fork 89
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
Allow using QGuiApplication
and not linking to QtWidgets
#211
Open
AdrianEddy
wants to merge
30
commits into
woboq:master
Choose a base branch
from
AdrianEddy:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 15 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
2fc0f5c
Add wrappers around `QJsonValue`, `QJsonArray` and `QJsonObject`
a9becb5
Make it compile with older rustc than 1.56
50d97b4
Add more complete wrappers around QJson* types and add tests
1b74577
Merge branch 'woboq:master' into master
AdrianEddy 3f52a88
Add a feature to skip linking with QtWidgets and use `QGuiApplication…
5dfc6c9
Fix build with QtWebEngine and add docs
1af5a5f
Fix build
4494571
Fix typo
8021f2a
Update to additive feature
dba9a3a
Add a define to build.rs and use #ifdef
2d239bd
Minor updates
d572c48
Merge branch 'woboq:master' into master
AdrianEddy fb883b4
Merge branch 'woboq:master' into master
AdrianEddy 22b2ebb
Merge branch 'woboq:master' into master
AdrianEddy 6b5e476
Merge branch 'woboq:master' into master
AdrianEddy e846147
Merge branch 'woboq:master' into master
AdrianEddy e359084
Fix building on Android. For some reason `-std=c++17` is not detected…
AdrianEddy a287bb1
Revert "Fix building on Android. For some reason `-std=c++17` is not …
AdrianEddy aa91b6d
Merge branch 'master' into master
AdrianEddy 9e60580
Merge branch 'woboq:master' into master
AdrianEddy 769069c
Merge branch 'woboq:master' into master
AdrianEddy 6411d54
Merge branch 'woboq:master' into master
AdrianEddy 102ae77
Merge branch 'woboq:master' into master
AdrianEddy 12dcb16
Fix call to `QMetaObject::invokeMethod` in Qt 6.5
AdrianEddy 0a2fdfa
Revert "Fix call to `QMetaObject::invokeMethod` in Qt 6.5"
AdrianEddy ecf70fb
Merge branch 'woboq:master' into master
AdrianEddy 98ebed1
Merge remote-tracking branch 'upstream/master'
AdrianEddy 59029b9
Merge branch 'woboq:master' into master
AdrianEddy ee6f5dc
Merge branch 'woboq:master' into master
AdrianEddy ff1e23d
Merge branch 'woboq:master' into master
AdrianEddy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
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.
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.
This PR is extremely helpful for me: I'm creating an app for the reMarkable e-ink tablet, which only supports QtQuick. However,
qttypes
still tries to link to QtWidgets with its default features, which causes an error for me because it doesn't exist.