diff --git a/v2/pkg/commands/build/desktop_darwin.go b/v2/pkg/commands/build/desktop_darwin.go index 1d0870b6..bc084f4f 100644 --- a/v2/pkg/commands/build/desktop_darwin.go +++ b/v2/pkg/commands/build/desktop_darwin.go @@ -4,13 +4,14 @@ package build import ( "fmt" - "github.com/leaanthony/slicer" - "github.com/wailsapp/wails/v2/internal/fs" "io/ioutil" "log" "path/filepath" "strconv" "strings" + + "github.com/leaanthony/slicer" + "github.com/wailsapp/wails/v2/internal/fs" ) func (d *DesktopBuilder) convertToHexLiteral(bytes []byte) string { @@ -21,6 +22,11 @@ func (d *DesktopBuilder) convertToHexLiteral(bytes []byte) string { return result } +// compileIcon will compile the icon found at /icon.png into the application +func (d *DesktopBuilder) compileIcon(assetDir string, iconFile string) error { + return nil +} + // We will compile all tray icons found at /assets/trayicons/*.png into the application func (d *DesktopBuilder) processTrayIcons(assetDir string, options *Options) error {