Hi all.
I have header files in: /usr/include/libxml2/libxml/. This directory has the header file "parser.h", and other header files.
I go to project -> build options -> compiler -> search directories and add /usr/include/libxml2/libxml/
But the compiler gives the error: parser.h: no such file or directory. If I include the header file as an absolute path ie. "/usr/include/libxml2/libxml/parser.h", then the compiler would not give that error, but would now give another error about another header file which is also in the same directory.
I don't want to add absolute paths for multiple files, so what can I do? Thanks in advance.