How it is possible under emacs and C++ to extend etags covering multiple directories? (I am not referring to recursive etgas which has a straight forward solution by using the -R option).
Something like this is needed, for example, in the case where we are using a third party library, including its headers, that could be installed anywhere in the directory structure.
An similar problem I am facing with emacs as a C++ editor is how to open an included header file directly from its #include directive.
This is trivial for IDE's (like VC_++) since the include headers path is part of the project but I cannot find a similar solution for emacs which as a thinner environment is not using the concept of a project....