Skip to content

Commit

Permalink
build_bin.sh allow Windows to build Sympal
Browse files Browse the repository at this point in the history
Since there's now a runtime check to disable it by default
  • Loading branch information
Beinsezii committed Jul 24, 2023
1 parent 7cdb2c6 commit f0a7be1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_bin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ mkdir ./bin 2>/dev/null

if [ -f "$LINUX" ]; then
cp "$LINUX" "./bin/${BIN}"
cargo build --release --no-default-features --features=media-controls,tui,clipboard,backend-rodio --target x86_64-pc-windows-gnu
cargo build --release $FEATURES --target x86_64-pc-windows-gnu
cp "./target/x86_64-pc-windows-gnu/release/${BIN}.exe" "./bin/${BIN}.exe"
fi

Expand Down

0 comments on commit f0a7be1

Please sign in to comment.