diff options
| author | Tom Savage <tcsavage@gmail.com> | 2019-10-29 23:11:20 +0000 |
|---|---|---|
| committer | Tom Savage <tcsavage@gmail.com> | 2019-10-29 23:14:02 +0000 |
| commit | 332f6fd3e7e56db31ea49770a5fa169fe19c10a8 (patch) | |
| tree | 62c51f8c84f67dea065ad4fdbe54bbe598cb9cf8 | |
| parent | 3cf69f964d1fd374acdb31fb30070059e3f8954e (diff) | |
| download | vcpkg-332f6fd3e7e56db31ea49770a5fa169fe19c10a8.tar.gz vcpkg-332f6fd3e7e56db31ea49770a5fa169fe19c10a8.zip | |
[qt5] Modify qtdeploy to include qtquickshapes
Qt 5.10 introduced the QtQuick.Shapes module. The qtdeploy tool copies the QML plugin (`qmlshapesplugin.dll`) into the build directory, but a second required dll (`Qt5QuickShapes.dll`) is not copied over.
This change adds this missing dll to the list of QtQuick-associated dlls to deploy.
| -rw-r--r-- | ports/qt5-base/qtdeploy.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/qt5-base/qtdeploy.ps1 b/ports/qt5-base/qtdeploy.ps1 index c751e891e..117456a14 100644 --- a/ports/qt5-base/qtdeploy.ps1 +++ b/ports/qt5-base/qtdeploy.ps1 @@ -69,7 +69,7 @@ function deployPluginsIfQt([string]$targetBinaryDir, [string]$QtPluginsDir, [str } } } elseif ($targetBinaryName -match "Qt5Quickd?.dll") { - foreach ($a in @("Qt5QuickControls2", "Qt5QuickControls2d", "Qt5QuickTemplates2", "Qt5QuickTemplates2d")) + foreach ($a in @("Qt5QuickControls2", "Qt5QuickControls2d", "Qt5QuickShapes", "Qt5QuickShapesd", "Qt5QuickTemplates2", "Qt5QuickTemplates2d")) { if (Test-Path "$binDir\$a.dll") { |
