I am making a module depending on libiconv for ios. Actually my module depends on a 3rd party library (zxing) which depends on libiconv. I added libiconv to the link for zxing lib and my module build. My problem is when compiling my application, libiconv is not automatically added as a link dependency. I have to open the iphone project and add the link dependency.
Is there any way to automatize the process?
Thanks
1 Answer
Accepted Answer
In the {project} folder, you will find module.xconfig.
In it you can force frameworks and libraries to load:
OTHER_LDFLAGS=$(inherited) -F '/Volumes/Expansion\ D/libraries/comScore-iOS4-1.1204.05/' -framework comScore
Your Answer
Think you can help? Login to answer this question!