Updated Visual Studio projects

There is now a single solution used by Visual Studio 2010 and newer
This commit is contained in:
Sam Lantinga 2015-06-14 18:21:04 -07:00
parent 6f1fc0d165
commit 479a07d7cf
96 changed files with 7026 additions and 13797 deletions

View file

@ -1,5 +1,4 @@
find . -type d -name 'Debug' -exec rm -rv {} \;
find . -type d -name 'Release' -exec rm -rv {} \;
find . -type f -name '*.user' -exec rm -v {} \;
find . -type f -name '*.ncb' -exec rm -v {} \;
find . -type f -name '*.suo' -exec rm -v {} \;
#!/bin/sh
find . -type f \( -name '*.user' -o -name '*.sdf' -o -name '*.ncb' -o -name '*.suo' \) -print -delete
find . -type f \( -name '*.bmp' -o -name '*.wav' -o -name '*.dat' \) -print -delete
find . -depth -type d \( -name Win32 -o -name x64 \) -exec rm -rv {} \;