Files
eepp/ios/compile-debug.sh
spartanj@gmail.com 9a6ff9789f Added SDL2 precompiled library for iOS.
Added some compilation helpers for iOS.
2012-06-04 00:20:55 -03:00

15 lines
351 B
Bash

#!/bin/sh
cd $(dirname "$0")/../
rm libeepp-armv7.a
rm libeepp-i386.a
rm libeepp.a
make -j2 -e IOS=yes NO_SNDFILE=yes STATIC_FT2=yes SIMULATOR=yes DEBUGBUILD=yes GLES1=yes
make -j2 -e IOS=yes NO_SNDFILE=yes STATIC_FT2=yes SIMULATOR=no DEBUGBUILD=yes GLES1=yes
lipo -create -arch armv7 libeepp-armv7.a -arch i386 libeepp-i386.a -output libeepp.a