Skip to content

Commit

Permalink
fix(windows): remove extra -m option from aqt install
Browse files Browse the repository at this point in the history
As per the documentation of aqt, we just need one `-m` and list the modules after. It seems like the first -m is ignored otherwise.
  • Loading branch information
jrainville committed Nov 22, 2022
1 parent 284302b commit 6609ebd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/windows_build_setup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function Install-Dependencies {
function Install-Qt-SDK {
Write-Host "Installing Qt $QtVersion SDK..."
pip install aqtinstall
aqt install --output "C:\Qt" $QtVersion windows desktop win64_msvc2017_64 -m qtwebengine -m qtlottie
aqt install --output "C:\Qt" $QtVersion windows desktop win64_msvc2017_64 -m qtwebengine qtlottie
}

# Install Microsoft Visual C++ Build Tools 15.8.9
Expand Down

0 comments on commit 6609ebd

Please sign in to comment.