24 lines
799 B
PowerShell
24 lines
799 B
PowerShell
#!/usr/bin/env pwsh
|
|
|
|
$global:CompilerFlags = @(
|
|
'/FS'
|
|
)
|
|
|
|
$global:LinkerFlags = @(
|
|
'/LTCG'
|
|
'/INCREMENTAL:NO'
|
|
'/OPT:REF'
|
|
'/DEBUG'
|
|
'/PDBALTPATH:%_PDB%'
|
|
)
|
|
|
|
$global:VsInstallPrefix = "$env:VSINSTALLDIR"
|
|
if (-not (Test-Path $global:VsInstallPrefix)) {
|
|
$global:VsInstallPrefix = Join-Path ${env:ProgramFiles(x86)} 'Microsoft Visual Studio' 2022 Community
|
|
}
|
|
if (-not (Test-Path $global:VsInstallPrefix)) {
|
|
$global:VsInstallPrefix = Join-Path ${env:ProgramFiles} 'Microsoft Visual Studio' 2022 Community
|
|
}
|
|
$global:VsVersion = ((& (Join-Path ${env:ProgramFiles(x86)} 'Microsoft Visual Studio' Installer vswhere) -Property catalog_productSemanticVersion -Path $VsInstallPrefix) -Split '[+]')[0]
|
|
$global:VcVarsScript = Join-Path $VsInstallPrefix VC Auxiliary Build vcvarsall.bat
|