You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Open-IM-Server/openim-chat/scripts/build.cmd

15 lines
255 B

@echo off
set "api_apps=admin-api chat-api"
set "rpc_apps=admin-rpc chat-rpc"
for %%a in (%api_apps%) do (
go build -o %%a.exe ../cmd/api/%%a/main.go
)
for %%a in (%rpc_apps%) do (
go build -o %%a.exe ../cmd/rpc/%%a/main.go
)
move *exe ../cmd