我刚开始和json一起开始编写这段简单的代码。
#include "json/json.h"
const char* lbuf = "[{color: 'red',value: '#f00'},{color: 'green',value: '#0f0'}]";
Json::Value root;
Json::Reader reader;
bool parsingSuccessful = reader.parse(lbuf, root);
if(!parsingSuccessful)
{
std::cout << "parsing not successful";
}
else
{
std::cout << "parsing successful";
}
我收到了这些编译问题。
undefined reference to `Json::Value::Value(Json::ValueType)'
undefined reference to `Json::Reader::Reader()'
有人可以帮我搞清楚吗?感谢。