Skip to content

Commit

Permalink
[qt5-base] skip depolyment of qml folder and plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
daschuer committed Jan 14, 2024
1 parent 6b24c46 commit 14ca19f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion overlay/windows/qt5-base/qtdeploy.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ function deployPluginsIfQt([string]$targetBinaryDir, [string]$QtPluginsDir, [str
deployPlugins "playlistformats"
} elseif ($targetBinaryName -match "Qt5PrintSupportd?.dll") {
deployPlugins "printsupport"
} elseif ($targetBinaryName -match "Qt5Qmld?.dll") {
} elseif ($targetBinaryName -match "Qt5Qmld?.dll" -and $false) {
# qml deployment is disabled bacause Mixxx 2.4 use Qt5Qml.dll only for QJSEngine
if(!(Test-Path "$targetBinaryDir\qml"))
{
if (Test-Path "$binDir\..\qml") {
Expand Down
2 changes: 1 addition & 1 deletion overlay/windows/qt5-base/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "qt5-base",
"version": "5.15.8",
"port-version": 6,
"port-version": 7,
"description": "Qt5 Application Framework Base Module. Includes Core, GUI, Widgets, Networking, SQL, Concurrent and other essential qt components.",
"homepage": "https://www.qt.io/",
"license": null,
Expand Down

0 comments on commit 14ca19f

Please sign in to comment.