CEGUI Android Port Try (cloned from official CEGUI hg repo)
Building instructions for android (linux as a host)
Clone this repo and checkout android-port branch and make sure you have CMake installed
Open the dependencies repo in a browser and download it as a zip file
Extract the zip file somewhere and then copy the dependencies dir to the cegui root dir
Download the android ndk for linux from this link and extract it somewhere.
Add the location of the ndk to your $PATH env var
Add the location of cegui root dir in a env var in your bashrc/profile like this
export CEGUI_ROOT=/path/to/cegui/root/dir
Goto cegui root dir and make a directory called android and goto that dir
Then run ../build_android.sh {NDK_LOCATION} {ABI} where {NDK_LOCATION} points to your android ndk root and {ABI} is the target architecture.
You can ommit the second argument as we build for armeabi-v7a by default since for now the dep libs are compiled only for that architecture.
Type make to build cegui and optionally specify -j option with number of compilation threds.