My other libraries do not allow me to set the -ObjC or all_load flags. So I need to use -force_load to link my library.
I have "GoogleOpenSource.framework" and "GooglePlus.framework" in my project, since I can correctly match them to work.
I have installed paths like this:
-force_load $(PROJECT_DIR)/Project_name/GooglePlus.framework/Versions/A/Headers/GooglePlus.h -force_load $(PROJECT_DIR)/Project_name/GoogleOpenSource.framework/Versions/A/Headers/GoogleOpenSource.h
under other linker flags, but it does not work.
What am I doing wrong here?
source share