I installed boost from synaptic.
Now i need to convert date from/to string, but when I write code like below,
date dt{2018-9-14};
string str=to_simple_string(dt);
cout<<str<<endl;
it gives an error:
/usr/include/boost/date_time/date_formatting.hpp:44: undefined reference to `boost::gregorian::greg_month::as_short_string() const'
/usr/include/boost/date_time/date_formatting.hpp:49: undefined reference to `boost::gregorian::greg_month::as_long_string() const'
How can I solve this???