mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-05-08 01:29:23 -05:00
d970f13cb5
- 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.1 usage...' -ForegroundColor Magenta
|
|
Write-Host
|
|
|
|
$Script:QtRoot = $env:TINY_QT_ROOT ?? 'C:\Qt'
|
|
|
|
$env:Path = "$Script:QtRoot\6.7.1\msvc2019_64\bin;" + $env:Path
|
|
|
|
. vcvars64.ps1
|