Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I make eclipse acknowledge my include files in a C++ Existing Makefile project?

Simple question: I have a C++ project configured for a existing makefile and it compiles fine. However, the IDE keeps complaining that it cannot resolve most of my symbols.

How do I configure eclipse to use my includes?

like image 538
ivarec Avatar asked Dec 12 '11 21:12

ivarec


1 Answers

Project->properties->C/C++ General->Paths and Symbol

Add the path to your include directory.

You can see in the screenshot, the configuration I use to develop with Qt in C++.

Screenshot representing Eclipse configuration for Qt Headers

like image 153
Vincenzo Pii Avatar answered Sep 19 '22 22:09

Vincenzo Pii