2025-05-27 22:12:13 +00:00

11 lines
224 B
Batchfile

@echo off
echo 🔨 Baue Windows 64-bit...
go build -o parser_cs2-win.exe main.go
echo 🔨 Baue Linux 64-bit...
set GOOS=linux
set GOARCH=amd64
go build -o parser_cs2-linux main.go
echo ✅ Build abgeschlossen!