First, I've tried http://www.boost.org/doc/libs/1_39_0/more/getting_started/unix-variants.html and Build Boost on Mac with Xcode and Using Boost with Xcode4 in painful detail, to no avail. I've spent about 5 hours on this thus far and have had no luck.
In painful detail, how do I install boost with my XCode C++ project.
What I've tried thus far:
Option 1. XCode -> File -> Add files to "Project Name"
Option 2. Building XCode as per http://www.boost.org/doc/libs/1_39_0/more/getting_started/unix-variants.html. The build works fine, but I cannot get XCode to recognize it.
Option 3. XCode -> Project -> Build Settings -> User Header Search Paths -> Add Build Setting... and adding in the path to the .hpp files
Option 4. XCode -> Targets -> Build Phases -> Link Binary With Libraries -> Add in all the compiled libraries
An interesting observation. The following is recognized by XCode:
#include "boost/asio.hpp"
The following is not recognized by XCode:
#include <boost/asio.hpp>
Please don't send me the same old links from the other articles. I have spent hours reading them.