mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-26 11:31:06 +00:00
2061a4e310
We will need this in order to be able to add conditionals depending on the rustc version, like we do on the linux script. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1491>
14 lines
279 B
PowerShell
14 lines
279 B
PowerShell
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
|
|
|
|
rustup --version
|
|
rustc --version
|
|
cargo --version
|
|
|
|
cargo install --locked cargo-c --version 0.9.26+cargo-0.72
|
|
|
|
if (!$?) {
|
|
Write-Host "Failed to install cargo-c"
|
|
Exit 1
|
|
}
|
|
|
|
cargo-cbuild --version
|