mirror of
https://github.com/MeexReay/bRAC.git
synced 2025-05-06 21:48:03 +03:00
11 lines
246 B
Bash
11 lines
246 B
Bash
#!/usr/bin/env bash
|
|
TARGETS=(
|
|
x86_64-unknown-linux-gnu
|
|
i686-unknown-linux-gnu
|
|
x86_64-pc-windows-gnu
|
|
i686-pc-windows-gnu
|
|
)
|
|
for TARGET in "${TARGETS[@]}"; do
|
|
cargo build --release --target "$TARGET"
|
|
echo "$TARGET" built
|
|
done |