Alia5 / SFML_AndroidStudio

Example of SFML in AndroidStudio with a bit of extra fluff on top
30 stars 3 forks source link

Removed hardcoded paths and added support for multiple ABIs #1

Closed AlexAUT closed 7 years ago

AlexAUT commented 7 years ago

There were some hardcoded paths in the templates which are not necessary. When you build SFML and execute "make install" SFML will get installed inside your NDK installation (With ABI prefix). So i changed the Gradle and Cmake files to search SFML there by default.

Also i added support for multiple ABIs, by using ANDROID_ABI in the cmake script

Alia5 commented 7 years ago

Nice! Thanks!