summaryrefslogtreecommitdiffstats
path: root/tools/win32/load-vsenv.ps1
blob: c5323dc2a485be668c6f2473b1b5100d1ebfe999 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# why that env handling, see
# https://help.appveyor.com/discussions/questions/18777-how-to-use-vcvars64bat-from-powershell#comment_44999171

Set-PsDebug -Trace 1

$SOURCE = Get-Location

if (Test-Path env:ICINGA2_BUILDPATH) {
  $BUILD = $env:ICINGA2_BUILDPATH
} else {
  $BUILD = "${SOURCE}\Build"
}

if (-not (Test-Path $BUILD)) {
  mkdir $BUILD | Out-Null
}

if (Test-Path env:VS_INSTALL_PATH) {
  $VSBASE = $env:VS_INSTALL_PATH
} else {
  $VSBASE = "C:\Program Files (x86)\Microsoft Visual Studio\2019"
}

if (Test-Path env:BITS) {
  $bits = $env:BITS
} else {
  $bits = 64
}

# Execute vcvars in cmd and store env
$vcvars_locations = @(
  "${VSBASE}\BuildTools\VC\Auxiliary\Build\vcvars${bits}.bat"
  "${VSBASE}\Community\VC\Auxiliary\Build\vcvars${bits}.bat"
  "${VSBASE}\Enterprise\VC\Auxiliary\Build\vcvars${bits}.bat"
)

$vcvars = $null
foreach ($file in $vcvars_locations) {
  if (Test-Path $file) {
    $vcvars = $file
    break
  }
}

if ($vcvars -eq $null) {
  throw "Could not get Build environment script at locations: ${vcvars_locations}"
}

cmd.exe /c "call `"${vcvars}`" && set > `"${BUILD}\vcvars.txt`""
if ($LastExitCode -ne 0) {
  throw "Could not load Build environment from: ${vcvars}"
}

# Load environment for PowerShell
Get-Content "${BUILD}\vcvars.txt" | Foreach-Object {
  if ($_ -match "^(VSCMD.*?)=(.*)$") {
	Set-Content ("env:" + $matches[1]) $matches[2]
  }
}