I'd like to install facebook's pop framework. I have a multi-project workspace which is not using cocoa pods. I want just the simplest, dumbest, quickest install.
From the pop readme:
"... you can add the project to your workspace and adopt the provided configuration files or manually copy the files under the pop subdirectory into your project. If installing manually, ensure the C++ standard library is also linked by including -lc++ to your project linker flags."
- I added pop.xcodeproj to my workspace.
- I added "pop.framework" to to the project that needs pop (general > linked frameworks and libraries).
- I added "-lc++" to my project linked flags (in the project that needs pop).
- Added
#import <POP/POP.h>
to my .m file.
The result: "POP/POP.h" not found.
I guess I'm doing something wrong, but absolutely no idea where to start looking.