mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-23 11:07:10 +01:00
[qt5-base] Add openssl dependency for Network module and deploy it for applications
This commit is contained in:
parent
92f9f63df6
commit
b2eb87dc71
@ -1,4 +1,4 @@
|
||||
Source: qt5-base
|
||||
Version: 5.9.2-2
|
||||
Version: 5.9.2-3
|
||||
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
|
||||
Build-Depends: zlib, libjpeg-turbo, libpng, freetype, pcre2, harfbuzz, sqlite3, libpq, double-conversion, openssl
|
||||
|
@ -10,6 +10,9 @@
|
||||
# Note: this function signature and behavior is depended upon by applocal.ps1
|
||||
function deployPluginsIfQt([string]$targetBinaryDir, [string]$QtPluginsDir, [string]$targetBinaryName) {
|
||||
|
||||
$baseDir = Split-Path $QtPluginsDir -parent
|
||||
$binDir = "$baseDir\bin"
|
||||
|
||||
function deployPlugins([string]$pluginSubdirName) {
|
||||
if (Test-Path "$QtPluginsDir\$pluginSubdirName") {
|
||||
Write-Verbose " Deploying plugins directory '$pluginSubdirName'"
|
||||
@ -36,6 +39,11 @@ function deployPluginsIfQt([string]$targetBinaryDir, [string]$QtPluginsDir, [str
|
||||
deployPlugins "platforminputcontexts"
|
||||
} elseif ($targetBinaryName -like "Qt5Network*.dll") {
|
||||
deployPlugins "bearer"
|
||||
if (Test-Path "$binDir\libeay32.dll")
|
||||
{
|
||||
deployBinary "$targetBinaryDir" "$binDir" "libeay32.dll"
|
||||
deployBinary "$targetBinaryDir" "$binDir" "ssleay32.dll"
|
||||
}
|
||||
} elseif ($targetBinaryName -like "Qt5Sql*.dll") {
|
||||
deployPlugins "sqldrivers"
|
||||
} elseif ($targetBinaryName -like "Qt5Multimedia*.dll") {
|
||||
|
Loading…
x
Reference in New Issue
Block a user