Files
mining-client/cmd/build.windows.bat

16 lines
317 B
Batchfile
Raw Normal View History

2025-11-26 11:39:20 +08:00
@echo off
2026-01-04 13:57:08 +08:00
:: 设置目标平台为 Windows 和 amd6464位
set GOOS=windows
set GOARCH=amd64
2025-11-26 11:39:20 +08:00
cd /d %~dp0
2026-01-04 13:57:08 +08:00
go build -o ../bin/client_windows.exe main.go
2025-11-26 11:39:20 +08:00
if %errorlevel% equ 0 (
2026-01-04 13:57:08 +08:00
echo 编译成功!可执行文件位于: ..\bin\client_windows.exe
2025-11-26 11:39:20 +08:00
) else (
echo 编译失败!
exit /b %errorlevel%
)