I am getting a strange problem. I want to build native code of android app which is in C++. I have included some includes in Android.mk. One of the include is like this
LOCAL_C_INCLUDES += $(LOCAL_PATH)/borders
Now I have a header file pqr/abc.h in borders which is included by a file xyz.h like this
#include "PQR/abc.h"
I am getting error that PQR/ABC.h does not exist.When I change PQR to pqr it works. But this problem occurs on my machine only. I am on mac and ndk version r9d. How to resolve case sensitive includes?