game_sync/bin/build.bat

10 lines
186 B
Batchfile

@echo off
xcopy ..\data\* .\data\ /s /e /y /exclude:..\shell\exclude.txt
for /f %%i in (../shell/programs.txt) do (
echo go build %%i
go build -o ./%%i/%%i.exe ../%%i/
)
pause