7 lines
213 B
Bash
Executable file
7 lines
213 B
Bash
Executable file
#!/usr/bin/bash
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
|
|
cargo build --release --target=x86_64-unknown-linux-musl
|
|
cargo xwin build --release --target=x86_64-pc-windows-msvc --bin=fsr-play --no-default-features
|