emacs cedet set up doubt
- by trybeingarun
Hi,
I installed cedet successfully today and got most of it working; thanks to Alex Ott's Gentle Introduction to Cedet.
However i am having a problem
When I give the exact path relative to the current file i am working on then auto-completion is working fine.
#include "../../opensource/inc/lldp_port.h"
void test_func()
{
lldp_port port;
port.blah //here auto-completion worked fine
}
However i cannot specify the full path all the time( we have eclipse at office and it generates makefiles for us )
#include "lldp_port.h"
void test_func()
{
lldp_port port;
port. //here auto-completion does not work :(
}
What should i do to solve this?