revisions

This commit is contained in:
pls.153 2024-05-30 08:10:36 +02:00
parent 6678252eb5
commit b02034be7b
4 changed files with 21 additions and 9 deletions

View file

@ -73,6 +73,7 @@ Item {
objectName: "BLE"
text: "BLE"
autoExclusive: true
checkable: true
checked: true
onTriggered: connection.changed(objectName)
}

View file

@ -136,18 +136,28 @@ ios {
}
32bit {
equals(QT_MAJOR_VERSION, 6) {
LIBS += -llqml32_armeabi-v7a
android {
equals(QT_MAJOR_VERSION, 6) {
LIBS += -llqml32_armeabi-v7a
}
lessThan(QT_MAJOR_VERSION, 6) {
LIBS += -llqml32
}
}
lessThan(QT_MAJOR_VERSION, 6) {
!android {
LIBS += -llqml32
}
LIBS += -llisp32
} else {
equals(QT_MAJOR_VERSION, 6) {
LIBS += -llqml_arm64-v8a
android {
equals(QT_MAJOR_VERSION, 6) {
LIBS += -llqml_arm64-v8a
}
lessThan(QT_MAJOR_VERSION, 6) {
LIBS += -llqml
}
}
lessThan(QT_MAJOR_VERSION, 6) {
!android {
LIBS += -llqml
}
LIBS += -llisp

View file

@ -154,10 +154,10 @@ QVariant QT::wifiConnectable(const QVariant& vIP) {
// SQLite
QVariant QT::iniDb(const QVariant& name) {
QVariant QT::iniDb(const QVariant& vName) {
db = QSqlDatabase::addDatabase("QSQLITE");
db.setDatabaseName(name.toString());
return name;
db.setDatabaseName(vName.toString());
return vName;
}
QVariant QT::sqlQuery(const QVariant& vQuery, const QVariant& vValues, const QVariant& vRows) {

View file

@ -72,6 +72,7 @@ Item {
objectName: "BLE"
text: "BLE"
autoExclusive: true
checkable: true
checked: true
onTriggered: connection.changed(objectName)
}