Blame view

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