Add iOS packaging to b.sh. Fix a bug.

This commit is contained in:
Sacha 2014-07-24 17:02:15 +10:00
parent 4183c2886d
commit 50fec0e741

6
b.sh
View File

@ -96,11 +96,13 @@ fi
make -j4 $MAKE_OPT
if [ "$PACKAGE" == "1" ]; then
if [ "$OS" == "Blackberry" ]; then
if [ "$TARGET_OS" == "Blackberry" ]; then
cp ../Blackberry/bar-descriptor.xml .
blackberry-nativepackager -package PPSSPP.bar bar-descriptor.xml $DEBUG_ARGS
elif [ "$OS" == "Symbian" ]; then
elif [ "$TARGET_OS" == "Symbian" ]; then
make sis
elif [ "$TARGET_OS" == "iOS" ]; then
xcodebuild -configuration Release
fi
fi
popd