-
Notifications
You must be signed in to change notification settings - Fork 5
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 build on qt6 #6
base: master
Are you sure you want to change the base?
Conversation
@@ -5,7 +5,7 @@ QT -= gui | |||
QT += dbus | |||
|
|||
CONFIG += \ | |||
c++11 \ | |||
c++17 \ |
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.
At least when i make apps for SFOS, their Qt version does not recognize c++17 as CONFIG, so i had to resort to QMAKE_CXXFLAGS += -std=c++17
.
(And c++11 maps to -std=gnu++0x
)
@@ -75,7 +75,7 @@ class Q_DECL_EXPORT NemoDeviceLockPlugin : public QQmlExtensionPlugin | |||
qDBusRegisterMetaType<NemoDeviceLock::Fingerprint>(); | |||
qDBusRegisterMetaType<QVector<NemoDeviceLock::Fingerprint>>(); | |||
|
|||
qmlRegisterType<NemoDeviceLock::FingerprintModel>(); | |||
// qmlRegisterType<NemoDeviceLock::FingerprintModel>(); |
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.
Is this intentionally disabled and will this cause issues?
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.
Commenting out the finger print model doesn't look proper and the review comment unaddressed. Marking as needing changes.
No description provided.