mirror of
https://gitea.farpn.net/w1cdn/mwtchahrd.git
synced 2025-12-10 06:28:02 -06:00
8 lines
359 B
Bash
Executable File
8 lines
359 B
Bash
Executable File
echo "Building release for multiple targets";
|
|
cargo build --release;
|
|
cross build --release --target=aarch64-unknown-linux-gnu;
|
|
cross build --release --target=x86_64-unknown-linux-gnu;
|
|
cross build --release --target=armv7-unknown-linux-gnueabihf;
|
|
cross build --release --target=arm-unknown-linux-gnueabihf;
|
|
cross build --release --target x86_64-pc-windows-gnu
|