how can I include Boost libraries (together with its includes files) in the standard search path of MinGW so that I can just do something like this;
#include <filesystem.hpp>
using boost::filesystem;
and avoiding adding -I, -l, and -L in Makefile, just like C++ standard library?
(I’m using compiled boost 1.51.0 on Windows 7)
By default GCC looks for C_INCLUDE_PATH and CPP_INCLUDE_PATH environment variables.
Instead of doing -I, you can add the following to your .bashrc: