84 lines
2.1 KiB
Plaintext
84 lines
2.1 KiB
Plaintext
#
|
|
# Copyright (c) 2013-2016 Vinnie Falco (vinnie dot falco at gmail dot com)
|
|
#
|
|
# Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
#
|
|
|
|
import os ;
|
|
|
|
local broot = [ os.environ BOOST_ROOT ] ;
|
|
|
|
project beast/doc ;
|
|
|
|
using boostbook ;
|
|
using quickbook ;
|
|
using doxygen ;
|
|
|
|
xml beast_boostbook : beast.qbk ;
|
|
|
|
path-constant out : . ;
|
|
|
|
install stylesheets
|
|
:
|
|
$(broot)/doc/src/boostbook.css
|
|
:
|
|
<location>$(out)/html
|
|
;
|
|
|
|
explicit stylesheets ;
|
|
|
|
install images
|
|
:
|
|
[ glob $(broot)/doc/src/images/*.png ]
|
|
images/beast.png
|
|
images/body.png
|
|
images/message.png
|
|
:
|
|
<location>$(out)/html/images
|
|
;
|
|
|
|
explicit images ;
|
|
|
|
install callouts
|
|
:
|
|
[ glob $(broot)/doc/src/images/callouts/*.png ]
|
|
:
|
|
<location>$(out)/html/images/callouts
|
|
;
|
|
|
|
explicit callout ;
|
|
|
|
boostbook doc
|
|
:
|
|
beast_boostbook
|
|
:
|
|
<xsl:param>chapter.autolabel=0
|
|
<xsl:param>boost.image.src=images/beast.png
|
|
<xsl:param>boost.image.alt="Beast Logo"
|
|
<xsl:param>boost.image.w=1007
|
|
<xsl:param>boost.image.h=107
|
|
<xsl:param>boost.root=$(broot)
|
|
<xsl:param>chapter.autolabel=0
|
|
<xsl:param>chunk.first.sections=1 # Chunk the first top-level section?
|
|
<xsl:param>chunk.section.depth=8 # Depth to which sections should be chunked
|
|
<xsl:param>generate.section.toc.level=1 # Control depth of TOC generation in sections
|
|
<xsl:param>toc.max.depth=2 # How many levels should be created for each TOC?
|
|
<xsl:param>toc.section.depth=2 # How deep should recursive sections appear in the TOC?
|
|
:
|
|
<location>temp
|
|
<dependency>stylesheets
|
|
<dependency>images
|
|
;
|
|
|
|
#explicit doc ;
|
|
# <xsl:param>nav.layout=none
|
|
# <format>html:<xsl:param>location=../bin/doc/html
|
|
# <xsl:param>generate.toc="chapter nop section nop"
|
|
# <xsl:param>root.filename=index
|
|
# <xsl:param>output-root="../bin/html"
|
|
|
|
|
|
#[include reference.qbk]
|
|
#[xinclude index.xml]
|