tags:

views:

23

answers:

1

I'm having an issue getting some code to work. Is there a way to enable headers to be included like so

#include <boost/asio.hpp>

Instead of

#include "boost/asio.hpp"
+2  A: 

Pass the directory to be searched for that path after -I on the command line to gcc.

Ignacio Vazquez-Abrams