obs-websocket/CI/install-qt-win.cmd
2021-04-11 20:21:18 -07:00

9 lines
252 B
Batchfile

if exist %QtBaseDir% (
echo "Qt directory found. Download skipped."
) else (
echo "Qt directory not found. Downloading..."
curl -kLO https://tt2468.net/dl/Qt_5.15.2.7z -f --retry 5 -C -
7z x Qt_5.15.2.7z -o%QtBaseDir%
)
dir %QtBaseDir%