diff options
author | Friedemann Kleint <Friedemann.Kleint@digia.com> | 2013-12-17 16:50:11 +0100 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-12-18 08:55:08 +0100 |
commit | 2be2eb83ff0a1a66a6d3500cf1f802d291c97d42 (patch) | |
tree | d9d710e73c42e33f8dab901b911e75ee88d56b03 | |
parent | 13d2c5a6a3f29d13341acd688988a75e40da1de6 (diff) | |
download | qttools-2be2eb83ff0a1a66a6d3500cf1f802d291c97d42.tar.gz qttools-2be2eb83ff0a1a66a6d3500cf1f802d291c97d42.tar.bz2 qttools-2be2eb83ff0a1a66a6d3500cf1f802d291c97d42.zip |
windeployqt: Copy .qml files as well.
Change-Id: I8bf115a87bfa6e67e04d17c628a3efc55ef7413e
Reviewed-by: Andrew Knight <andrew.knight@digia.com>
-rw-r--r-- | src/windeployqt/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windeployqt/main.cpp b/src/windeployqt/main.cpp index 23b64be3..7896b9f4 100644 --- a/src/windeployqt/main.cpp +++ b/src/windeployqt/main.cpp @@ -480,7 +480,7 @@ private: class QmlDirectoryFileEntryFunction { public: explicit QmlDirectoryFileEntryFunction(Platform platform, bool debug) - : m_qmlNameFilter(QStringList() << QStringLiteral("*.js") << QStringLiteral("qmldir") << QStringLiteral("*.qmltypes") << QStringLiteral("*.png")) + : m_qmlNameFilter(QStringList() << QStringLiteral("*.js") << QStringLiteral("qmldir") << QStringLiteral("*.qml") << QStringLiteral("*.qmltypes") << QStringLiteral("*.png")) , m_dllFilter(platform, debug) {} |