diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2018-02-07 19:00:11 -0800 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-02-08 13:25:45 -0800 |
| commit | 73e45b0ce2b4132a24708a0359c76927ed418e15 (patch) | |
| tree | 7ad1c64d52e39787e7d9245dda1f6924a30c5536 /ports | |
| parent | d503a55412b3fa1b2b96ae0719286ee593f3d732 (diff) | |
| download | vcpkg-73e45b0ce2b4132a24708a0359c76927ed418e15.tar.gz vcpkg-73e45b0ce2b4132a24708a0359c76927ed418e15.zip | |
[qt5-base][qtdeploy] Deploy plugin dependencies to the executable's folder.
Diffstat (limited to 'ports')
| -rw-r--r-- | ports/qt5-base/CONTROL | 2 | ||||
| -rw-r--r-- | ports/qt5-base/qtdeploy.ps1 | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ports/qt5-base/CONTROL b/ports/qt5-base/CONTROL index 1a1aec15d..1e10239b3 100644 --- a/ports/qt5-base/CONTROL +++ b/ports/qt5-base/CONTROL @@ -1,4 +1,4 @@ Source: qt5-base -Version: 5.9.2-4 +Version: 5.9.2-5 Description: Qt5 Application Framework Base Module. Includes Core, GUI, Widgets, Networking, SQL, Concurrent and other essential qt components. Build-Depends: zlib, libjpeg-turbo, libpng, freetype, pcre2, harfbuzz, sqlite3, libpq, double-conversion, openssl diff --git a/ports/qt5-base/qtdeploy.ps1 b/ports/qt5-base/qtdeploy.ps1 index b25a46e7a..26bd10257 100644 --- a/ports/qt5-base/qtdeploy.ps1 +++ b/ports/qt5-base/qtdeploy.ps1 @@ -19,6 +19,7 @@ function deployPluginsIfQt([string]$targetBinaryDir, [string]$QtPluginsDir, [str New-Item "$targetBinaryDir\$pluginSubdirName" -ItemType Directory -ErrorAction SilentlyContinue | Out-Null Get-ChildItem "$QtPluginsDir\$pluginSubdirName\*.dll" | % { deployBinary "$targetBinaryDir\$pluginSubdirName" "$QtPluginsDir\$pluginSubdirName" $_.Name + resolve $_ } } else { Write-Verbose " Skipping plugins directory '$pluginSubdirName': doesn't exist" |
