-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d847ed2
commit ce69255
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |