windows build script

This commit is contained in:
SpikeHD 2022-04-25 16:24:32 -07:00
parent ffd0d5dbb4
commit c9ffc9c8c3
2 changed files with 22 additions and 0 deletions

0
build.sh Normal file
View File

22
build_win.cmd Normal file
View File

@ -0,0 +1,22 @@
@echo off
:: Clean dist folder
del /s /q /f .\dist
rd /s /q .\dist
:: build
call neu build
:: Copy scripts and langs
xcopy .\languages\ .\dist\GrassClipper\langauges\ /y /s
xcopy .\proxy\ .\dist\GrassClipper\proxy\ /y /s
xcopy .\scripts\ .\dist\GrassClipper\scripts\ /y /s
:: bgs
mkdir .\dist\GrassClipper\resources\bg\private
mkdir .\dist\GrassClipper\resources\bg\server
xcopy .\resources\bg\private\ .\dist\GrassClipper\resources\bg\private\ /y /s
xcopy .\resources\bg\server\ .\dist\GrassClipper\resources\bg\server\ /y /s
:: rename exe
move .\dist\GrassClipper\GrassClipper-win_x64.exe .\dist\GrassClipper\GrassClipper.exe