Goto Implementation jumps to file from other project
Posted: Tue Jan 15, 2019 5:24 am
Hi guys, hope someone can point me in the right direction here.
I have a workspace with 5 different c projects, many files are common to all projects, but each project has it's own main.c file.
When I right click on a function call and click on "Goto Implementation", codelite will often find the implementation in a file in one of the other projects, rather than finding it in the same file that is open and I'm working on.
For example:
void foo(void)
{
//do some foo
}
int main(void)
{
foo();
}
if I right click on foo(); and click on Goto Implementation, codelite will often open the main.c from another project and take me to the function in that file.
Is there a way to limit searching to only the current active project ?
Thanks!
I have a workspace with 5 different c projects, many files are common to all projects, but each project has it's own main.c file.
When I right click on a function call and click on "Goto Implementation", codelite will often find the implementation in a file in one of the other projects, rather than finding it in the same file that is open and I'm working on.
For example:
void foo(void)
{
//do some foo
}
int main(void)
{
foo();
}
if I right click on foo(); and click on Goto Implementation, codelite will often open the main.c from another project and take me to the function in that file.
Is there a way to limit searching to only the current active project ?
Thanks!