How to refer my own environment variables in NDK(Android.mk) -
I have a problem.
I have my own environment variable (example: MY_HOME). And I want to use it in my Android.mk so I have tried the following,
MY_DIR: = $ (MY_HOME) ... LOCAL_SRC_FILES: $ $ (MY_DIR) /sources/test.cpp
But there is no material in MY_DIR for compiling, I mean $ (MY_DIR) returns blank ("").
Android.mk
Comments
Post a Comment