mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-15 14:51:14 -08:00
revisions
This commit is contained in:
parent
6678252eb5
commit
b02034be7b
4 changed files with 21 additions and 9 deletions
|
|
@ -73,6 +73,7 @@ Item {
|
|||
objectName: "BLE"
|
||||
text: "BLE"
|
||||
autoExclusive: true
|
||||
checkable: true
|
||||
checked: true
|
||||
onTriggered: connection.changed(objectName)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -72,6 +72,7 @@ Item {
|
|||
objectName: "BLE"
|
||||
text: "BLE"
|
||||
autoExclusive: true
|
||||
checkable: true
|
||||
checked: true
|
||||
onTriggered: connection.changed(objectName)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue