1Building for android depends on the cmake toolchain file in cmake/android.toolchain
2
3This toolchain file does a few things next to being just a toolchain file:
4* It downloads and install the android SDK + NDK with all required tools. This requires accepting a license
5* It downloads and compiles SFML with requirements and installs those in the NDK folder
6* Builds an APK from the compiled sources
7
8Because of this, building EE for android should be as easy as:
9```
10mkdir _build_android
11cd _build_android
12cmake .. -DCMAKE_TOOLCHAIN_FILE=../cmake/android.toolchain -DSERIOUS_PROTON_DIR=../../SeriousProton
13make -j 5
14```
15Note that this only works on linux. Building from windows is not supported at the moment.
16