Blame view

3rdparty/boost_1_81_0/libs/detail/doc/build.jam 975 Bytes
977ed18d   Hu Chunming   提交三方库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  # 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 ;