aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qnx/qnxdeployqtlibrariesdialog.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2017-09-27 16:10:13 +0200
committerUlf Hermann <ulf.hermann@qt.io>2017-09-29 08:26:33 +0000
commitdefcb6a55a6561fd80ee9377c06984f3cd450c07 (patch)
treeed2deb04c6a221c5aacd7bf15744fac8609d091d /src/plugins/qnx/qnxdeployqtlibrariesdialog.cpp
parentbb16ae7323c21a31a0f21546ed35d5ea9278d59a (diff)
QtSupport: Add a method to retrieve the QML path
We check that qmake property in many different places. Change-Id: Ifd5efe4ad2831385493bd3afe8538929578e8fb4 Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Diffstat (limited to 'src/plugins/qnx/qnxdeployqtlibrariesdialog.cpp')
-rw-r--r--src/plugins/qnx/qnxdeployqtlibrariesdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qnx/qnxdeployqtlibrariesdialog.cpp b/src/plugins/qnx/qnxdeployqtlibrariesdialog.cpp
index 65dbfc6a9d..cc457fc887 100644
--- a/src/plugins/qnx/qnxdeployqtlibrariesdialog.cpp
+++ b/src/plugins/qnx/qnxdeployqtlibrariesdialog.cpp
@@ -244,7 +244,7 @@ QList<DeployableFile> QnxDeployQtLibrariesDialog::gatherFiles()
result.append(gatherFiles(qtVersion->qmakeProperty("QT_INSTALL_PLUGINS")));
result.append(gatherFiles(qtVersion->qmakeProperty("QT_INSTALL_IMPORTS")));
- result.append(gatherFiles(qtVersion->qmakeProperty("QT_INSTALL_QML")));
+ result.append(gatherFiles(qtVersion->qmlPath().toString()));
return result;
}