mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-04-27 12:09:17 -05:00
10 lines
249 B
PowerShell
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
|