build_clean.bat 282 B

1234567891011121314151617
  1. @echo off
  2. set workPath=%~dp0
  3. set thirdPartyPath=%~dp03rd
  4. if exist %thirdPartyPath% (
  5. echo %thirdPartyPath% exist
  6. rd /S /Q %thirdPartyPath%
  7. )
  8. cd %workPath%
  9. if exist %workPath%build (
  10. rd /S /Q %workPath%build
  11. )
  12. if exist %workPath%\output (
  13. rd /S /Q %workPath%\output
  14. )