10 lines
293 B
PowerShell
10 lines
293 B
PowerShell
#!/usr/bin/env powershell
|
|
#
|
|
# Install all dependencies required to build Warp on Windows.
|
|
|
|
# Install Rust + cargo.
|
|
bash (((Get-Location).path) + '\script\install_rust')
|
|
|
|
# Install various build-time dependencies through cargo.
|
|
bash (((Get-Location).path) + '\script\install_cargo_build_deps')
|