cline = cline .. ', ' .. argument_name(a.xarg.type_name, ' arg'..i)
> Now I added -i ${BINDING_HEADER}/${BINDING_HEADER}
> Which generates:
>
> #ifndef LQT_HEAD_agxStream_LQT_EndOfArchiveException
> #define LQT_HEAD_agxStream_LQT_EndOfArchiveException
> #include "lqt_common.hpp"
> #include "libname/libname" <<<<
> #include "lqt_qt.hpp"
Mario wrote> I assume this is the behaviour you wanted, correct?
Yes, but the problem is below!
> // But then this libname depends on another namespace which is then tried to
> be included with:
> #include <otherlib>
^^^^^^^^^^
Should be
#include <otherlib/otherlib>
Or at least there should be a way to get this.
Because if I have "otherlib/otherlib" above, then what is the reason for having <otherlib> a few lines below?
I dont want to "open" up namespace directories, for example for openscenegraph, it would be devistating to do
-I include/osg
-I include/osgDB
-I include/osgViewer
etc...
Sometimes there are files with the same name in the various namespaces!!