Page 1 of 1

about code completion(search path)

Posted: Wed Mar 03, 2010 3:01 pm
by cnhemiya
menu->settings->tabs settings->include files
add search path,Example"d:\mingw\include",the CodeLite only scan "d:\mingw\include", can not scan sub directory. :roll:

Re: about code completion(search path)

Posted: Wed Mar 03, 2010 3:13 pm
by eranif
codelite does not "scan" directories.

It scans for include statements in your code.

If your code includes #include <sys/types.h>

and the search path is set to :

/path/to/mingw/include

then codelite will try to locate the file like this:

'/path/to/mingw/include/sys/types.h'

That is how it is working
Eran