mirror of
https://github.com/MeexReay/bRAC.git
synced 2025-05-06 13:38:04 +03:00
16 lines
280 B
Bash
16 lines
280 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
TARGETS=(
|
|
x86_64-unknown-linux-gnu
|
|
i686-unknown-linux-gnu
|
|
x86_64-pc-windows-gnu
|
|
i686-pc-windows-gnu
|
|
x86_64-apple-darwin
|
|
aarch64-apple-darwin
|
|
)
|
|
|
|
for TARGET in "${TARGETS[@]}"; do
|
|
cargo build --release --target "$TARGET"
|
|
done |