]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/algorithm/doc/Jamfile.v2
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / algorithm / doc / Jamfile.v2
1 # Boost.Algorithm
2 #
3 # Copyright (c) 2010-2012 Marshall Clow
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
13 import os ;
14
15 using quickbook ;
16 using doxygen ;
17 using boostbook ;
18
19 doxygen autodoc
20 :
21 [ glob ../../../boost/algorithm/*.hpp
22 ../../../boost/algorithm/searching/*.hpp
23 ../../../boost/algorithm/cxx11/*.hpp
24 ../../../boost/algorithm/cxx14/*.hpp
25 ]
26 :
27 <doxygen:param>"PREDEFINED=\"BOOST_ALGORITHM_DOXYGEN=1\""
28 <doxygen:param>WARNINGS=YES # Default NO, but useful to see warnings, especially in a logfile.
29 ;
30
31
32 xml algorithm : algorithm.qbk ;
33
34 boostbook standalone
35 :
36 algorithm
37 :
38 <dependency>autodoc
39 <xsl:param>boost.root=../../../..
40 <xsl:param>"boost.doxygen.reftitle=Boost.Algorithms C++ Reference"
41 <xsl:param>chapter.autolabel=0
42 <xsl:param>chunk.section.depth=8
43 <xsl:param>toc.section.depth=2
44 <xsl:param>toc.max.depth=2
45 <xsl:param>generate.section.toc.level=1
46 ;
47
48 ###############################################################################
49 alias boostdoc
50 : algorithm ../string/doc/string_algo.xml
51 :
52 : <dependency>autodoc <dependency>../string/doc//autodoc
53 : ;
54 explicit boostdoc ;
55 alias boostrelease ;
56 explicit boostrelease ;