10 lines
333 B
Batchfile
10 lines
333 B
Batchfile
SET CGO_ENABLED=0
|
|
SET GOOS=windows
|
|
SET GOARCH=amd64
|
|
cd ../
|
|
|
|
go build -o ./bin/cmd.exe ./services/cmd/main.go
|
|
go build -o ./bin/mainte.exe ./services/mainte/main.go
|
|
go build -o ./bin/gateway.exe ./services/gateway/main.go
|
|
go build -o ./bin/worker.exe ./services/worker/main.go
|
|
go build -o ./bin/robot.exe ./services/robot/main.go |