I'm building a library for which one file requires an additional include path. Is there a way to adjust the include path for compilation of a single file?
bld(features="cxx cxxshlib",
source=[so, many, files, from an ant_glob],
includes=[Some path that's really only needed for one interface file])
I'd be happy with a solution that is use
based, too.