Mercurial > sdl-ios-xcode
view Xcode/mkxcode.csh @ 4484:9322f7db8603
Cleaned up the mouse window focus handling: you always pass in the relative window when sending a mouse event.
Fixed a bug where only mouse wheel up was sent on Mac OS X
Fixed a bug where mouse window focus was getting hosed by the fullscreen mouse code on Mac OS X
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 05 Jul 2010 22:48:13 -0700 |
parents | 9e9a2476f704 |
children |
line wrap: on
line source
#!/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)