mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-05 21:17:07 +00:00
![Riccardo Schirone](/assets/img/avatar_default.png)
* 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
|
|
}
|
|
} |