On Fri, Jul 23, 2010 at 10:00 AM, Bo Jensen
On Fri, Jul 23, 2010 at 9:56 AM, Paul A. Bristow
wrote: -----Original Message----- From: boost-users-bounces@lists.boost.org [mailto:boost-users-bounces@lists.boost.org] On Behalf Of Bo Jensen Sent: Friday, July 23, 2010 7:20 AM To: boost-users@lists.boost.org Subject: Re: [Boost-users] Boost services
On Fri, Jul 23, 2010 at 1:35 AM, OvermindDL1
wrote: On Thu, Jul 22, 2010 at 8:09 AM, Bo Jensen
wrote: On Thu, Jul 22, 2010 at 12:55 PM, Vladimir Prus
wrote: Bo Jensen wrote:
> I have a small business which uses boost quite a lot, thanks for all > the great code. I am missing some features at the moment. Is it either > possible to donate to get some things done or does some qualified > people offer such services for a fee ? More specifically I would like > to see the doxygen integration being expanded.
On Thu, Jul 22, 2010 at 8:09 AM, Bo Jensen
wrote: 5) add C# support (which is supported by doxygen).
C# support?
Are you sure that simply adding the C# files to the jamfile include list won't give you much (if not all) of what you want?
doxygen autodoc : [ glob ../../../boost/your_project/*.hpp ] # These are any of your hpp include files (perhaps none). [ glob ../../../boost/your_project/detail/*.hpp ] # More include files, if necessary.
add your C# files here?
But perhaps you have tried this already?
Thanks Paul, that might work, I will try it out.
Paul
--- Paul A. Bristow Prizet Farmhouse Kendal, UK LA8 8AB +44 1539 561830, mobile +44 7714330204 pbristow@hetp.u-net.com
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
I now got C#, doxygen and boostbook working, it was quite easy. But I had to do a small hack : 1) cloned type file cpp.jam into cs.jam and renamed to CS. 2) Added CS to doxygen.jam : generators.register-composing doxygen.headers-to-doxyfile : H HPP CPP CS : DOXYFILE ; This works like a charm. I was hoping to do it all in my own jam file, so I don't need to change each time I update my boost version. But I can not make it work. I would like to do : type.register CPP : cs ; -> but append to the current type defined and then : generators.register-composing doxygen.headers-to-doxyfile : CS : DOXYFILE ; -> also append Can this be done or should I do it in completely different way ? Sorry for my limited knowledge about boost build.