mirror of
https://github.com/yawut/SDL.git
synced 2026-08-24 09:45:09 -05:00
Eric Wing to Sam
Lots of fixes. Fixed missing power management building. Added template icons to the project templates. DocSet stuff Documentation fixes.. Fixed all the SDLtests. (Lots of tedious work.) It now depends on the static library target for convenience so I am not going to remove it from the SDL xcode project.
This commit is contained in:
20
Xcode/mkxcode.csh
Executable file
20
Xcode/mkxcode.csh
Executable 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)
|
||||
Reference in New Issue
Block a user