Eclipse CDT ошибка при компиляции

Работаю с проектом OpenV2G. Проект скачал с гитхаба. Собран на eclipse cdt. Загружаю в eclipse при компиляции ругатса на файлы

23:15:41 **** Incremental Build of configuration Default for project OpenV2G-master ****
Info: Internal Builder is used for build
gcc -O2 -g -Wall -c -fmessage-length=0 -o “src\din\dinEXIDatatypesDecoder.o” “…\src\din\dinEXIDatatypesDecoder.c”
In file included from …\src\din\dinEXIDatatypesDecoder.c:33:
…\src\din\dinEXIDatatypesDecoder.h:49:10: fatal error: EXITypes.h: No such file or directory
#include “EXITypes.h”
^~~~~~~~~~~~
compilation terminated.
23:15:42 Build Failed. 1 errors, 0 warnings. (took 665ms)

все эти файлы находятся в папке src. Кто работал с eclipse подскажите как правильно добавлять библиотеки

Странный путь, он в другой папке, по идее должно быть например “…/codec/EXITypes.h”.

Может надо добавить все папки в src в список папок хедеров как-то так :man_shrugging: Adding header files to eclipse build path for C++ - Stack Overflow

Left-click your project and choose Properties, then go to the following section: C/C++ General, and then Paths and Symbols, then select Includes tab, in Languages list choose GNU C++ (or whichever toolchain is your current). Now you can see Add... button to the very right, click it and provide a path to the directory which contains includes, for example: D:\Libraries\MiniXML\include . Don’t forget to check the Add to all configurations checkbox.

Еще может зависеть от компилятора, проект явно древний и хз чем собирался.