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

18 lines
935 B
PowerShell
Raw Permalink Normal View History

#!/bin/env /bin/sh
echo "Debug-build with features: minimal"
2022-12-11 22:25:09 +01:00
cargo build -j 6 --no-default-features --features= &&
echo "Debug-build with features: logging" &&
2022-12-11 22:25:09 +01:00
cargo build -j 6 --no-default-features --features=logging &&
echo "Debug-build with features: render" &&
2022-12-11 22:25:09 +01:00
cargo build -j 6 --no-default-features --features=render &&
echo "Debug-build with features: logging render" &&
2022-12-11 22:25:09 +01:00
cargo build -j 6 --no-default-features --features="logging,render" &&
echo "Release-build with features: minimal"
2022-12-11 22:25:09 +01:00
cargo build -j 6 --release --no-default-features --features= &&
echo "Release-build with features: logging" &&
2022-12-11 22:25:09 +01:00
cargo build -j 6 --release --no-default-features --features=logging &&
echo "Release-build with features: render" &&
2022-12-11 22:25:09 +01:00
cargo build -j 6 --release --no-default-features --features=render &&
echo "Release-build with features: logging render" &&
2022-12-11 22:25:09 +01:00
cargo build -j 6 --release --no-default-features --features="logging,render" &&
2022-11-06 17:07:21 +01:00
echo "Done!"