8 lines
274 B
Bash
Executable file
8 lines
274 B
Bash
Executable file
#!/bin/bash
|
|
. ./environment.sh
|
|
pushd SDL/Xcode-iPhoneOS/SDL
|
|
xcodebuild -project SDLiPhoneOS.xcodeproj -target libSDL -configuration Debug -sdk iphoneos5.0
|
|
popd
|
|
|
|
cp SDL/Xcode-iPhoneOS/SDL/build/Debug-iPhoneOS/libSDL.a $BUILDROOT/lib
|
|
cp -a SDL/include $BUILDROOT/include/SDL
|