libgdx / gdx-jnigen

jnigen is a small library that can be used with or without libGDX which allows C/C++ code to be written inline with Java source code.
Apache License 2.0
60 stars 25 forks source link

Android: Add support for adding arbitrary strings into Android.mk #72

Open Berstanio opened 3 months ago

Berstanio commented 3 months ago

I often find myself needing more configuration capabilites in Android.mk. We already have androidAndroidMk, but this does not allow injecting anything into the shared library build, like static lib dependencies.

I always workaround it by using linkerFlags with new lines, but it's honestly not great!