Hello!
It would be nice to support importing NDK and other foreign modules like cpufeatures, android_native_app_glue, etc
Is it possible to achieve such thing?
With options like
-- workspace level
androidimportmodules {
"android_native_app_glue",
"android/cpufeatures",
"path_to_your_makefile/Android.mk"
}
-- project level (or LOCAL_STATIC_LIBRARIES), possibly "links" but i'm not sure
androidmodules {
"android_native_app_glue",
"cpufeatures",
"your_android_mk_project_name"
}
Hello!
It would be nice to support importing NDK and other foreign modules like
cpufeatures,android_native_app_glue, etcIs it possible to achieve such thing?
With options like