blob: dedb9c1455c47f88b9a210f6969d44278fe63c2e [file] [log] [blame]
Brian Silvermanfad8f552018-08-04 23:36:19 -07001# Boost.Container library documentation Jamfile ---------------------------------
2#
3# Copyright Ion Gaztanaga 2009-2013. Use, modification and
4# distribution is subject to the Boost Software License, Version
5# 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6# http://www.boost.org/LICENSE_1_0.txt)
7#
8# See http://www.boost.org for updates, documentation, and revision history.
9
10import doxygen ;
11import quickbook ;
12
13using auto-index ;
14
15path-constant images_location : ../ ;
16path-constant here : . ;
17
18doxygen autodoc
19 :
20 [ glob ../../../boost/container/*.hpp ]
21 [ glob ../../../boost/container/pmr/*.hpp ]
22 :
23 <doxygen:param>EXTRACT_ALL=NO
24 <doxygen:param>HIDE_UNDOC_MEMBERS=YES
25 <doxygen:param>EXTRACT_PRIVATE=NO
26 <doxygen:param>ENABLE_PREPROCESSING=YES
27 <doxygen:param>EXPAND_ONLY_PREDEF=YES
28 <doxygen:param>MACRO_EXPANSION=YES
29 <doxygen:param>"PREDEFINED=\"insert_const_ref_type= const T&\" \\
30 \"BOOST_CONSTEXPR_OR_CONST=constexpr\" \\
31 \"BOOST_CONTAINER_DOXYGEN_INVOKED\" \\
32 \"BOOST_CONTAINER_IMPDEF(T)=implementation_defined\" \\
33 \"BOOST_CONTAINER_SEEDOC(T)=see_documentation\" \\
34 \"BOOST_NOEXCEPT_OR_NOTHROW=noexcept\" \\
35 \"BOOST_NOEXCEPT_IF(T)=noexcept(T)\" \\
36 \"BOOST_RV_REF(T)=T&&\" \\
37 \"BOOST_RV_REF_BEG=\" \\
38 \"BOOST_RV_REF_END=&&\" \\
39 \"BOOST_RV_REF_BEG_IF_CXX11=\" \\
40 \"BOOST_RV_REF_END_IF_CXX11=&&\" \\
41 \"BOOST_COPY_ASSIGN_REF(T)=const T &\" \\
42 \"BOOST_FWD_REF(a)=a &&\" \\
43 \"BOOST_INTRUSIVE_OPTION_CONSTANT(OPTION_NAME, TYPE, VALUE, CONSTANT_NAME) = template<TYPE VALUE> struct OPTION_NAME{};\" \\
44 \"BOOST_INTRUSIVE_OPTION_TYPE(OPTION_NAME, TYPE, TYPEDEF_EXPR, TYPEDEF_NAME) = template<class TYPE> struct OPTION_NAME{};\" \\
45 \"BOOST_CONTAINER_DOC1ST(T1, T2)=T1\" \\
46 \"BOOST_CONTAINER_DOCIGN(T) \"\\
47 \"BOOST_CONTAINER_DOCONLY(T)=T\"\\
48 \"BOOST_CONTAINER_SCOPEDALLOC_DUMMYTRUE=\"\\
49 \"BOOST_CONTAINER_SCOPEDALLOC_ALLINNER=InnerAllocs...\"\\
50 \"BOOST_CONTAINER_DECL=\"\\
51 \"BOOST_CONTAINER_FORCEINLINE=inline\" \\
52 "
53 <xsl:param>"boost.doxygen.reftitle=Boost.Container Header Reference"
54 ;
55
56xml container : container.qbk
57 :
58 <include>../../../tools/auto_index/include
59 ;
60
61boostbook standalone
62 :
63 container
64 :
65 <format>html:<xsl:param>boost.root=../../../..
66 <format>html:<xsl:param>boost.libraries=../../../../libs/libraries.htm
67 <format>html:<xsl:param>img.src.path=../../../../doc/html/
68 <format>xhtml:<xsl:param>img.src.path=../../../../doc/html/
69 <xsl:param>generate.section.toc.level=3
70 <xsl:param>chunk.first.sections=1
71 <format>pdf:<xsl:param>img.src.path=$(images_location)/
72 <dependency>autodoc
73 <format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/doc/html
74
75 # Build requirements go here:
76
77 # <auto-index>on (or off) one turns on (or off) indexing:
78 <auto-index>on
79
80 # Turns on (or off) auto-index-verbose for diagnostic info.
81 # This is highly recommended until you have got all the many details correct!
82 <auto-index-verbose>on
83
84 # Choose the indexing method (separately for html and PDF) - see manual.
85 # Choose indexing method for PDFs:
86 <format>pdf:<auto-index-internal>off
87
88 # Choose indexing method for html:
89 <format>html:<auto-index-internal>on
90 <format>docbook:<auto-index-internal>on
91
92 # Set the name of the script file to use (index.idx is popular):
93 <auto-index-script>$(here)/index.idx
94 # Commands in the script file should all use RELATIVE PATHS
95 # otherwise the script will not be portable to other machines.
96 # Relative paths are normally taken as relative to the location
97 # of the script file, but we can add a prefix to all
98 # those relative paths using the <auto-index-prefix> feature.
99 # The path specified by <auto-index-prefix> may be either relative or
100 # absolute, for example the following will get us up to the boost root
101 # directory for most Boost libraries:
102 <auto-index-prefix>"$(here)/../../.."
103
104 <format>pdf:<xsl:param>admon.graphics.extension=".svg"
105 ;
106
107install pdfinstall : standalone/<format>pdf : <install-type>PDF <location>. <name>container.pdf ;
108explicit pdfinstall ;
109
110###############################################################################
111alias boostdoc
112 : standalone/<format>docbook
113 :
114 :
115 : ;
116explicit boostdoc ;
117alias boostrelease ;
118explicit boostrelease ;