Actually I am trying to parse a json file using rapidjson library . But when i am trying to add this header file in my code it shows me an error like this
"[Error] rapidjson/document.h: No such file or directory" and
"recipe for target 'main_1.o' failed"
here main_1 is my file name. This is my actual code
#include<stdio.h>
#include "rapidjson/document.h"
using namespace rapidjson;
Document document;
document.Parse(json);
int main()
{
char name[50];
int t_value;
return 0;
}
And also i haven't idea about where i want to add my json file?
But i really don't know where i did a mistake? please anyone help me.