Files
Tools/script/AutoPack.bat

28 lines
416 B
Batchfile
Raw Normal View History

2026-03-17 14:21:59 +08:00
@echo off
echo Config CMake...
2026-03-19 10:01:04 +08:00
cmake -B..\build -S..\ -DCMAKE_BUILD_TYPE=Release -A x64
2026-03-17 14:21:59 +08:00
if errorlevel 1 (
echo CMake Failed.
pause
exit /b 1
)
echo Building...
cmake --build ..\build --config Release
if errorlevel 1 (
echo Build Failed.
pause
exit /b 1
)
echo Packing...
python package.py ..\build\Tools.h
if errorlevel 1 (
echo Pack Failed.
pause
exit /b 1
)
echo Done.
pause