minesweeper-java/compile.bat
2021-09-16 20:44:09 +08:00

11 lines
137 B
Batchfile

@echo off
if exist bin (
del /Q bin
)
javac -d bin src\*.java
xcopy /Y "%~dp0res\*" "%~dp0bin"
echo.
echo 完成!
echo.
pause