aboutsummaryrefslogtreecommitdiff
path: root/dev_tools/scripts/build-all.ps1
blob: ecf4465ad57bad272db14d427f272b726072e20c (plain) (blame)
1
2
3
4
5
6
7
8
9
$starting_dir = Get-Location
cargo clean
Get-ChildItem -Recurse -Filter "Cargo.toml" | ForEach-Object {
    $project_dir = $_.DirectoryName
    Push-Location $project_dir
    cargo build
    Pop-Location
}
Set-Location $starting_dir