mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-23 13:19:54 +00:00
e3b67f124c
* Make sure meson can build with `system` = `android`. * Add support for binr/blob in meson build * Create release GitHub Actions workflow * Add publish-docker-image job * Also create Ubuntu packages and ship static windows zip
7 lines
347 B
PowerShell
7 lines
347 B
PowerShell
$installationPath = vswhere.exe -latest -property installationPath
|
|
if ($installationPath -and (test-path "$installationPath\Common7\Tools\vsdevcmd.bat")) {
|
|
& "${env:COMSPEC}" /s /c "`"$installationPath\Common7\Tools\vsdevcmd.bat`" -no_logo && set" | foreach-object {
|
|
$name, $value = $_ -split '=', 2
|
|
set-content env:\"$name" $value
|
|
}
|
|
} |