Files
TinyORM/tools/qtenv6.ps1.example
T
2023-07-20 19:27:19 +02:00

10 lines
249 B
PowerShell

#!/usr/bin/env pwsh
Set-StrictMode -Version 3.0
Write-Host 'Setting up environment for Qt 6.5.2 usage...' -ForegroundColor Magenta
$env:Path = '<your_path_here>\Qt\6.5.2\msvc2019_64\bin;' + $env:Path
. <your_path_here>\dotfiles\bin\vcvars64.ps1