Use minimalistic Qt on AppVeyor.

This commit is contained in:
Martin Rotter 2020-11-18 10:58:19 +01:00
parent 5b2a94c522
commit 0355d9d1e1

View File

@ -3,8 +3,6 @@ $old_pwd = $pwd.Path
# Get Qt.
$qt_version = "5.15.1"
$qt_stub = "qt-$qt_version-dynamic-msvc2019-x86_64"
$qt_path = (Resolve-Path $qt_stub).Path
$qt_qmake = "$qt_path\bin\qmake.exe"
$qt_link = "https://github.com/martinrotter/qt5-minimalistic-builds/releases/download/$qt_version/$qt_stub.7z"
$qt_output = "qt.7z"
@ -12,6 +10,9 @@ $qt_output = "qt.7z"
Invoke-WebRequest -Uri $qt_link -OutFile $qt_output
& ".\resources\scripts\7za\7za.exe" x $qt_output
$qt_path = (Resolve-Path $qt_stub).Path
$qt_qmake = "$qt_path\bin\qmake.exe"
cd "$qt_stub\bin\"
& ".\qtbinpatcher.exe"
cd "$old_pwd"