Files
eepp/projects/ios/cross-compile.sh
Martín Lucas Golini d5f0ac08d5 Texture packer now can add external images ( that could be loaded from memory ).
Added static function IsImage to cImage.
I've been doing some research to try to cross-compile iOS apps from Linux, but it seems that there are some problems, but i'll keep trying.
2012-12-25 16:49:45 -03:00

12 lines
345 B
Bash
Executable File

#!/bin/sh
cd $(dirname "$0")
export TOOLCHAINPATH=/home/apps/ios/bin/
export SYSROOTPATH=/home/apps/ios/Platforms/iPhoneOS5.0.sdk
export IOSVERSION=5.0
premake4 --file=../../premake4.lua --platform=ios-cross-arm7 --with-static-freetype --with-static-eepp --with-gles1 --with-gles2 --with-static-backend gmake
cd ../../make/ios/
time make $@