$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-build] Generating plain Doxygen documentation
From: Vladimir Prus (ghost_at_[hidden])
Date: 2009-11-15 13:03:16
On Sunday 15 November 2009 20:32:10 Marek Bálint wrote:
> I want to use Boost.Build for my own project and it works well so far. But now
> I need to generate plain Doxygen documentation without any boostbook
> additions/modifications/transformations and I seem to be stuck. Basically, my
> question Is how to write Jamfile equivalent for this Makefile rule:
>
> doc:
> doxygen Doxyfile
Marek,
you should be able to do this:
notfile doc : @doxygen ;
actions doxygen
{
doxygen Doxyfile
}
See:
http://www.boost.org/doc/tools/build/doc/html/bbv2/builtins/raw.html
Hope this helps,
Volodya