go_dreamfactory/build.bat
2022-06-29 17:15:31 +08:00

7 lines
265 B
Batchfile

SET CGO_ENABLED=0
SET GOOS=windows
SET GOARCH=amd64
go build -o build/gateway.exe services/gateway/main.go
go build -o build/worker.exe services/worker/main.go
go build -o build/web.exe services/web/main.go
go build -o build/dbservice.exe services/dbservice/main.go