-
Notifications
You must be signed in to change notification settings - Fork 3
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
Fixup qt6 build #3
Conversation
@sledges ping |
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.
- Please squash the commit
- If I understand correctly this change is about supporting Qt6. The commit message should say so.
- Some files have their final newlines remove, please fix that.
2f28550
to
25b01c5
Compare
#include <QtGlobal> | ||
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) | ||
#include <iodata-qt6/storage.h> | ||
#elif QT_VERSION >= QT_VERSION_CHECK(5, 0, 0) |
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.
These could have been just #else, but oh well.
@@ -1 +1,6 @@ | |||
#include <QtGlobal> |
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.
Hey @neochapay this import doesn't actually exist right now. Instead (for Qt5) this would be qt5/QtCore/QtGlobal
. Is some configuration missing in the .pro files to make this work?
No description provided.