According to this page, using Asio without Boost should be fairly straightforward, but I still cannot compile any file with an include
that looks like any of these:
#include <asio>
#include <asio.hpp>
#include <asio/version.hpp>
I have set my compiler to use c++11 (which it was already doing, though I did switch from gnu++11
to c++11
), and I have placed #define ASIO_STANDALONE
before the various includes I am trying.
Is there some extra work necessary for accessing c++11 Asio headers beyond this? I just get file not found
errors during compilation with any of the above attempts.