17 lines
629 B
Batchfile
17 lines
629 B
Batchfile
@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.
|