Skip to content

Commit

Permalink
qt6
Browse files Browse the repository at this point in the history
  • Loading branch information
benapetr committed Jul 18, 2024
1 parent 2ebbbf6 commit cfbc37f
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/extensions/enwiki
Submodule enwiki updated 1 files
+34 −16 CMakeLists.txt
2 changes: 1 addition & 1 deletion src/extensions/extension-flow
Submodule extension-flow updated 1 files
+35 −16 CMakeLists.txt
2 changes: 1 addition & 1 deletion src/extensions/extension-mass-delete
2 changes: 1 addition & 1 deletion src/extensions/extension-scoring
2 changes: 1 addition & 1 deletion src/extensions/extension-splitter-helper
2 changes: 1 addition & 1 deletion src/extensions/extension-thanks
2 changes: 1 addition & 1 deletion src/extensions/mass-delivery
Submodule mass-delivery updated 1 files
+19 −4 CMakeLists.txt
17 changes: 16 additions & 1 deletion windows/release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,22 @@ cp ..\src\scripts\*.js release\extensions
cp ..\src\huggle_res\Resources\huggle.ico huggle.ico
cp ..\src\huggle_res\Resources\huggle.ico release
# missing Qt dll, bug in winqtdeploy :/
cp $qt_path\bin\Qt5Multimedia.dll release
$path = Join-Path $qt_path 'bin'
$fileQt5 = 'Qt5Multimedia.dll'
$fileQt6 = 'Qt6Multimedia.dll'

if (Test-Path (Join-Path $path $fileQt5))
{
Copy-Item (Join-Path $path $fileQt5) 'release'
}
elseif (Test-Path (Join-Path $path $fileQt6))
{
Copy-Item (Join-Path $path $fileQt6) 'release'
}
else
{
Write-Error 'Neither Qt5Multimedia.dll nor Qt6Multimedia.dll was found.'
}

# Older SSL, used by Qt 5.10 and older
#cp $openssl_path\libssl32.dll release
Expand Down

0 comments on commit cfbc37f

Please sign in to comment.