-
Notifications
You must be signed in to change notification settings - Fork 551
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
Support Qt6 #170
Open
ahcorde
wants to merge
13
commits into
rolling
Choose a base branch
from
ahcorde/rolling/qt6
base: rolling
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
Support Qt6 #170
Changes from 11 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
eb20e1a
Support Qt6
ahcorde 0fee1fa
Fixed build
ahcorde 2a66b59
make linters happyu
ahcorde 3c44bfc
Added target_include_directories
ahcorde 941c411
Merge branch 'rolling' into ahcorde/rolling/qt6
ahcorde 0dafd9b
Fixed merged
ahcorde 3d338aa
cleanups
ahcorde 6c82d02
fix
ahcorde fcd8adb
updated cmake version
ahcorde a7fb60a
Modified CMakeLists logic
ahcorde bcbc50b
Make linters happy
ahcorde de156a0
Fix CMake
ahcorde 34fd921
make linters happy
ahcorde 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
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.
I'm somewhat concerned about this logic.
In particular, I think we want to continue to use Qt5 right now, but have everything in place so that we could switch to Qt6 in the future.
Because of the way we build binary packages, we will only install Qt5 libraries, and thus we'll continue to build against Qt5 for binaries.
But in from-source builds, it depends on what the user has installed. Thus, I'm a bit afraid that we'll get bug reports from users saying things won't compile properly due to Qt6 being installed. And I don't think we are quite ready for that.
So my suggestion here is to hide this whole thing behind a CMake option, something like
USE_QT6
. The the logic would be something like:What do you think?