Calling inner Android.mk file to build prebuilt libraries not working

前端 未结 2 1323
轮回少年
轮回少年 2021-02-11 07:53

I have a project organized as follow:

project/jni/Android.mk
project/jni/libA/Android.mk
project/jni/libB/Android.mk
project/lib/armeabi/libA.so
project/lib/arme         


        
2条回答
  •  悲哀的现实
    2021-02-11 08:51

    You can have the following in higher-level Android.mk files to recursively go through the directories. You'd put it in project/jni/Android.mk and it'd go into libA and libB and process the Android.mk files in them.

    include $(call all-subdir-makefiles)
    

提交回复
热议问题