worlds-history-sim-rs/build_all.sh.ps1

18 lines
895 B
PowerShell
Raw Normal View History

#!/bin/env /bin/sh
echo "Debug-build with features: minimal"
cargo build --no-default-features --features= &&
echo "Debug-build with features: logging" &&
cargo build --no-default-features --features=logging &&
echo "Debug-build with features: render" &&
cargo build --no-default-features --features=render &&
echo "Debug-build with features: logging render" &&
2022-11-08 21:46:32 +01:00
cargo build --no-default-features --features="logging,render" &&
echo "Release-build with features: minimal"
cargo build --release --no-default-features --features= &&
echo "Release-build with features: logging" &&
cargo build --release --no-default-features --features=logging &&
echo "Release-build with features: render" &&
cargo build --release --no-default-features --features=render &&
echo "Release-build with features: logging render" &&
2022-11-08 21:46:32 +01:00
cargo build --release --no-default-features --features="logging,render" &&
2022-11-06 17:07:21 +01:00
echo "Done!"