Skip to content

Commit

Permalink
🏗️ feat: added Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
t1ltxz-gxd committed Oct 28, 2024
1 parent d847ed2 commit ce69255
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
release:
cd bytesto4t/src-tauri
echo "Releasing x86_64-pc-windows-gnu"
make release-x86_64-pc-windows-gnu
echo "Releasing x86_64-unknown-linux-gnu"
make release-x86_64-unknown-linux-gnu

release-x86_64-pc-windows-gnu:
cross build --release --target x86_64-pc-windows-gnu

release-x86_64-unknown-linux-gnu:
cross build --release --target x86_64-unknown-linux-gnu

install-deps:
echo "Installing dependencies..."
cargo install cross

0 comments on commit ce69255

Please sign in to comment.