I am trying to get the Boost library working.
I have included the path in my c_cpp_properties.json
"includePath": [
"C:\\MinGW\\boost_1_70_0"
]
although IntelliSense finds the libraries after I try to #include them, when actually #including them i get this error:
fatal error: boost/lexical_cast.hpp: No such file or directory
#include <boost/lexical_cast.hpp>
I am missing something?