Source

Target

Commits (2)
Showing with 5 additions and 10 deletions
......@@ -4,7 +4,7 @@ import QtQuick.tooling 1.1
// It is used for QML tooling purposes only.
//
// This file was auto-generated by:
// 'qmlplugindump -notrelocatable QtSensors 5.4'
// 'qmlplugindump -nonrelocatable QtSensors 5.5'
Module {
Component {
......@@ -51,7 +51,7 @@ Module {
exports: [
"QtSensors/Altimeter 5.1",
"QtSensors/Altimeter 5.2",
"QtSensors/Altimeter 5.4"
"QtSensors/Altimeter 5.5"
]
exportMetaObjectRevisions: [0, 0, 0]
}
......
......@@ -208,10 +208,10 @@ public:
qmlRegisterType <QmlSensorGesture >(package, major, minor, "SensorGesture");
// Register the 5.4 interfaces
// Register the 5.5 interfaces
// No API changes, just reintroduce existing interfaces for 5.2
// Implicitly registers 5.3 too
minor = 4;
// Implicitly registers 5.3 & 5.4 too
minor = 5;
qmlRegisterType <QmlAltimeter >(package, major, minor, "Altimeter");
}
};
......
CXX_MODULE = sensors
TARGET = declarative_sensors
TARGETPATH = QtSensors
IMPORT_VERSION = 5.1 # Doesn't matter, as long as it's a valid version?!
QT += qml sensors sensors-private
HEADERS += \
......