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

c# - Reactive Extensions ControlScheduler -

scala - Play Framework - how to bind form to a session field -

javascript - Enable/Disable form elements and changing the values of button at a time? -