build steps

This commit is contained in:
2026-06-07 22:55:56 +08:00
parent dff504ef67
commit 7b42a6be63
14 changed files with 467 additions and 18 deletions
+16
View File
@@ -0,0 +1,16 @@
@echo off
REM Remove all build outputs. Leaves sources, scripts, and the leanclr
REM submodule intact.
setlocal
if exist build rmdir /s /q build
if exist build-master rmdir /s /q build-master
if exist build-web rmdir /s /q build-web
if exist src\generated rmdir /s /q src\generated
if exist managed\GodotSharpCompat\Generated rmdir /s /q managed\GodotSharpCompat\Generated
if exist project\bin rmdir /s /q project\bin
if exist project\leanclr rmdir /s /q project\leanclr
if exist project\obj rmdir /s /q project\obj
echo [clean] Removed build directories, generated bindings, C# outputs.