1# Boost.Optional
2#
3# Copyright (c) 2003-2007 Fernando Luis Cacciola Carballal
4#
5# Distributed under the Boost Software License, Version 1.0.
6# (See accompanying file LICENSE_1_0.txt or copy at
7# http://www.boost.org/LICENSE_1_0.txt)
8
9
10# Quickbook
11# -----------------------------------------------------------------------------
12
13using boostbook ;
14import quickbook ;
15
16path-constant images : html ;
17
18xml optional
19    :
20        00_optional.qbk
21    ;
22
23install images
24    :
25        images/opt_align1.png
26        images/opt_align2.png
27        images/opt_align3.png
28        images/opt_align4.png
29    :
30        <location>html/images
31    ;
32
33boostbook standalone
34    :
35        optional
36    :
37        <format>html:<xsl:param>boost.root=../../../..
38        <format>html:<xsl:param>boost.libraries=../../../../libs/libraries.htm
39        <xsl:param>chapter.autolabel=0
40        <xsl:param>chunk.section.depth=8
41        <xsl:param>toc.section.depth=2
42        <xsl:param>toc.max.depth=2
43        <xsl:param>generate.section.toc.level=1
44        <format>pdf:<xsl:param>img.src.path=$(images)/
45        <format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/libs/optional/doc/html
46        <format>docbook:<auto-index-internal>on
47    ;
48
49###############################################################################
50alias boostdoc ;
51explicit boostdoc ;
52alias boostrelease : standalone ;
53explicit boostrelease ;
54