Hi Pavol,
> doxygen autodoc > > ../../../../boost/algorithm/string.hpp > ../../../../boost/algorithm/string_regex.hpp > ../../../../boost/algorithm/string/case_conv.hpp ..... > Everything works fine, when I build from a local directory. But when I try > to build from main documentaion dir I get errors like this: > > XXX > ...found 89 targets... > ...updating 7 targets... > doxygen-action ..\bin.v2\libs\algorithm\string\doc\msvc\debug\autodoc.xml > Error: tag INPUT: input source `..\..\..\..\boost\algorithm\string.hpp' I think doxygen.jam has a bug. In V2, the real path to those headers are determined by the name itself and the source directory of the project. However, when doxygen.jam generates a config file for doxygen, it only uses the name part, so it does not work is source directory != current directory. I can suggest wrapping the names of headers in 'glob'. This will magically make them absolute, which will fix this problem. - Volodya ------------------------------------------------------- This SF.Net email sponsored by Black Hat Briefings & Training. Attend Black Hat Briefings & Training, Las Vegas July 24-29 - digital self defense, top technical experts, no vendor pitches, unmatched networking opportunities. Visit www.blackhat.com _______________________________________________ Boost-docs mailing list [EMAIL PROTECTED] Unsubscribe and other administrative requests: https://lists.sourceforge.net/lists/listinfo/boost-docs
