diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-04-07 17:06:11 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-04-07 17:06:11 -0700 |
commit | 924370c0e46c3ec366eafe37d5957973a8ead847 (patch) | |
tree | 67a4c29db1a97f45b9067eb87fea20e5988e46a5 /packaging/ios/Subsurface-mobile | |
parent | 8a53cf8e64beb2c5c7e86d0b66872440e33b6f98 (diff) | |
download | subsurface-924370c0e46c3ec366eafe37d5957973a8ead847.tar.gz |
QML UI: modify dummy.qml to bring the correct plugins
Our qmake based build for iOS still requires the dummy.qml to trigger
inclusion of the correct plugins in the iOS app.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/ios/Subsurface-mobile')
-rw-r--r-- | packaging/ios/Subsurface-mobile/dummy.qml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packaging/ios/Subsurface-mobile/dummy.qml b/packaging/ios/Subsurface-mobile/dummy.qml index 4a200b2db..0a668d643 100644 --- a/packaging/ios/Subsurface-mobile/dummy.qml +++ b/packaging/ios/Subsurface-mobile/dummy.qml @@ -1,13 +1,14 @@ // dummy file that tells the iOS build which dependencies // are needed at runtim import QtQuick 2.5 -import QtQuick.Controls 1.4 -import QtQuick.Controls.Styles 1.4 +import QtQuick.Controls 2 +import QtQuick.Controls 1 import QtQuick.Dialogs 1.2 +import QtQuick.Templates 2.0 import QtQuick.Layouts 1.2 import QtQuick.Window 2.2 -import QtWebView 1.0 import QtGraphicalEffects 1.0 +import QtQml.Models 2.1 ApplicationWindow { |