Updated Xcode project from Eric Wing

This commit is contained in:
Sam Lantinga
2009-09-24 07:13:02 +00:00
parent 8e720afb8f
commit 69732bedfa
51 changed files with 9334 additions and 0 deletions

20
Xcode/mkxcode.csh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/csh
###
## This script creates "Xcode.tar.gz" in the parent directory
###
# remove build products
rm -rf SDL/build
rm -rf SDLTest/build
# remove Finder info files
find . -name ".DS_Store" -exec rm "{}" ";"
# remove user project prefs
find . -name "*.pbxuser*" -exec rm "{}" ";"
find . -name "*.mode*" -exec rm "{}" ";"
find . -name "*.perspective*" -exec rm "{}" ";"
# create the archive
(cd .. && gnutar -zcvf Xcode.tar.gz Xcode)