Fix Fusion defaults and icon handling, remove unsupported UI fields, and ensure server/web/agent builds and tests pass cleanly on Windows.
12 lines
204 B
Go
12 lines
204 B
Go
//go:build !windows
|
|
|
|
package builder
|
|
|
|
func (h *Handler) prepareFusionWinres(fusionDir, prepPath string) error {
|
|
return nil
|
|
}
|
|
|
|
func fusionLdflags(prepPath string) string {
|
|
return "-s -w -H windowsgui"
|
|
}
|