Skip to content

Commit

Permalink
add windows release makefile config
Browse files Browse the repository at this point in the history
  • Loading branch information
songlim327 committed Jul 26, 2023
1 parent 99d52fd commit 91acd8f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
6 changes: 6 additions & 0 deletions FyneApp.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[Details]
Icon = "./resources/images/logo512.png"
Name = "Recoil"
ID = "com.songlim.recoil"
Version = "1.0.0"
Build = 1
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
.PHONY: init

init:
go run init/init.go
go run init/init.go

win-release:
fyne package -os windows
7z a -tzip "recoil-1.0.0_windows_amd64.zip" Recoil.exe

release: win-release

0 comments on commit 91acd8f

Please sign in to comment.