Add systray with icon

This commit is contained in:
2022-05-01 12:37:05 +09:30
parent 06ac259e0a
commit b04ed6aa62
8 changed files with 84 additions and 7 deletions

View File

@@ -34,6 +34,7 @@ foreach my $type (keys %build) {
add_extras();
foreach my $type (keys %build) {
print "building for $type\n";
local $ENV{GOOS} = $build{$type}->{env}->{GOOS};
local $ENV{GOARCH} = $build{$type}->{env}->{GOARCH};
system "go", "build", "-o", "release/$type/" . $build{$type}->{filename};