In my andoid.mk file I have to copy and paste my sources inside jni folder and do something like this:
FILE_LIST := $(wildcard $(LOCAL_PATH)/myfolder/*.cpp)
How can I make it point to a path that is outside my project? Something like this:
FILE_LIST := $(wildcard /home/user/myfolder/folder/*.cpp)
Or make a variable and do it like this?
MY_VARIABLE = /home/user/mypath
FILE_LIST := $(wildcard $(MY_VARIABLE)/*.cpp)