forked from n6cta/mwtchahrd
8 lines
360 B
Bash
Executable File
8 lines
360 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;
|