fileboy/build-windows.bat

8 lines
168 B
Batchfile

@echo off
echo build start...
SET CGO_ENABLED=0
SET GOOS=windows
SET GOARCH=amd64
go build -ldflags "-s -w" -o fileboy-windows-amd64.exe
echo build success
pause