mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-05-01 06:00:08 -05:00
c32ec5a2e6
- docs - tools - workflows - NOTES.txt
13 lines
272 B
PowerShell
13 lines
272 B
PowerShell
#!/usr/bin/env pwsh
|
|
|
|
Set-StrictMode -Version 3.0
|
|
|
|
Write-Host 'Setting up environment for Qt 6.7.2 usage...' -ForegroundColor Magenta
|
|
Write-Host
|
|
|
|
$Script:QtRoot = $env:TINY_QT_ROOT ?? 'C:\Qt'
|
|
|
|
$env:Path = "$Script:QtRoot\6.7.2\msvc2019_64\bin;" + $env:Path
|
|
|
|
. vcvars64.ps1
|