I'm trying to get c++ netlib 0.11.0 working with Visual Studio 2013, and I'm having quite a difficult time. I placed the netlib main folder in my visual studio folder, and I set the include directory properly. You can see this clearly in the following image:
https://i.stack.imgur.com/RQNrA.png
The documentation / examples for c++ netlib tell me that to get started, I need to include
#include <boost/network/protocol/http/client.hpp>
but when I do this, my compiler can't find anything as shown below:
https://i.stack.imgur.com/RzZ4w.png
Am I supposed to merge the contents of the cpp netlib with the boost library? I've tried to do that as well but I get a whole other list of problems. I have no idea how to get this working, anyone have any ideas?