mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-06-03 20:16:29 +03:00
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.
12 lines
345 B
Bash
Executable File
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 $@
|