I am using android NDK on windows. I am trying to compile my c file using Cygwin. Everything works if I put source code under the JNI directory. However, I want to separate out the C code from the rest of Android code. So, I created a symlink to point to where the c source is on cygwin. For ex: ln -s /cygdrive/c/android-c-source/ src
Now when I type "ls src" on command prompt, I see the content under the symlink. In the make file, I use LOCAL_SRC_FILES := src/myc.c and it does not get compiled. How do I make the makefile to follow the symlink? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en To unsubscribe, reply using "remove me" as the subject.

