2
0

clean_build.bat 409 B

123456789101112131415161718
  1. @ECHO OFF
  2. REM
  3. REM Copyright (c) Contributors to the Open 3D Engine Project.
  4. REM For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. REM
  6. REM SPDX-License-Identifier: Apache-2.0 OR MIT
  7. REM
  8. del /q open_azslc*
  9. cd bin || goto :NEXT
  10. del /q *
  11. for /d %%x in (*) do @rd /s /q "%%x"
  12. cd ..
  13. :NEXT
  14. cd build || goto :EOF
  15. del /q *
  16. for /d %%x in (*) do @rd /s /q "%%x"
  17. cd ..