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

Popular posts from this blog

python - rpy2 import is not working -

c++ - How to load a bitmap from file into the samples buffer -

javascript - How to get MySQL query result returned using $.ajax -