build.jam 975 Bytes
# Copyright Rene Rivera 2016
# 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)

using quickbook ;
using boostbook ;

xml detail : detail.qbk ;

install images : [ glob $(BOOST_ROOT)/doc/src/images/*.png ] : <location>html/images ;
explicit images ;
install callouts : [ glob $(BOOST_ROOT)/doc/src/images/callouts/*.png ] : <location>html/images/callouts ;
explicit callouts ;
install css : [ glob $(BOOST_ROOT)/doc/src/*.css ] : <location>html ;
explicit css ;

boostbook standalone
    :
        detail
    :
        <xsl:param>boost.root=../../../..
        <xsl:param>generate.section.toc.level=3
        <xsl:param>chunk.section.depth=2
        #<xsl:param>chunk.first.sections=1
    
        <dependency>images
        <dependency>callouts
        <dependency>css
    ;

alias boostdoc ;
explicit boostdoc ;

alias boostrelease : standalone ;
explicit boostrelease ;