mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-26 16:18:43 -05:00
10 lines
210 B
PowerShell
Executable File
10 lines
210 B
PowerShell
Executable File
$erroractionpreference = "stop"
|
|
|
|
cmd /c "`".gitlab\intel\setvars.bat`" & set" |
|
|
foreach {
|
|
if ($_ -match "=") {
|
|
$v = $_.split("=")
|
|
[Environment]::SetEnvironmentVariable($v[0], $v[1])
|
|
}
|
|
}
|