mirror of
https://github.com/libretro/pcsx2.git
synced 2024-12-30 13:43:23 +00:00
cc1bc8d122
git-svn-id: http://pcsx2.googlecode.com/svn/branches/GSopen2@1848 96395faa-99c1-11dd-bbfe-3dabce05a288
12 lines
665 B
Batchfile
12 lines
665 B
Batchfile
:: clean_msvc.cmd
|
|
::
|
|
:: This batch file cleans up some files that MSVC's Clean/Rebuild commands tend to miss.
|
|
:: In particular the .ilk and .pdb files are known to get corrupted and cause all sorts of odd
|
|
:: linker errors, and the .ncb files can also get corrupted and cause intellisense breakges.
|
|
::
|
|
:: Safety: This tool should be pretty safe. None of the files it deletes are important. That
|
|
:: is, they're all files MSVC just rebuilds automatically next time you run/recompile. But even
|
|
:: so, don't go running this batch file in your root c:\ folder. It's probably not a wise action.
|
|
:: Enjoy. :)
|
|
|
|
del /s *.ncb;*.ilk;*.pdb;*.bsc;*.sbr;*.res;*.pch |