Skip to content

Commit

Permalink
github action #7
Browse files Browse the repository at this point in the history
  • Loading branch information
yousefvand committed Oct 31, 2024
1 parent 7095ddd commit ee5155c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,13 @@ jobs:
Invoke-WebRequest -Uri "https://download.qt.io/official_releases/online_installers/qt-unified-windows-x64-online.exe" `
-OutFile $installer -TimeoutSec 1200
# Run the Qt installer in a headless, script-based mode
# Run the Qt installer interactively without extra flags
Start-Process -FilePath $installer -ArgumentList `
'--script', 'install-qt.qs', `
'-platform minimal' -NoNewWindow -Wait
'--no-interaction', `
'--confirm-command', `
'--default-answer', `
'--install', '--target-dir', 'C:\Qt' `
'-NoNewWindow -Wait'
# Verify Qt installation
if (!(Test-Path "C:\Qt\6.5.3\msvc2019_64")) {
Expand Down

0 comments on commit ee5155c

Please sign in to comment.