thorium-mirror/win_scripts/clean.bat

28 lines
606 B
Batchfile
Raw Normal View History

2022-05-18 17:46:42 -04:00
# Copyright (c) 2022 Alex313031.
2022-05-18 17:46:42 -04:00
# Run from within out\Thorium or wherever you put your build, or cd there first
# i.e. cd C:\src\chromium\src\out\thorium
echo "Cleaning up build artifacts..." &&
2022-07-09 20:08:23 -04:00
cd C:\src\chromium\src\out\thorium &&
2022-05-18 17:46:42 -04:00
del *deps* &&
del *TOC* &&
rmdir /s /q pyproto &&
rmdir /s /q obj &&
rmdir /s /q newlib_pnacl_nonsfi &&
rmdir /s /q newlib_pnacl &&
rmdir /s /q nacl_bootstrap_x64 &&
rmdir /s /q irt_x64 &&
rmdir /s /q glibc_x64 &&
rmdir /s /q gen &&
rmdir /s /q etc &&
rmdir /s /q clang_newlib_x64 &&
rmdir /s /q thinlto-cache &&
rmdir /s /q fontconfig_caches &&
echo "Done!"
exit 0