Blame view

3rdparty/boost_1_81_0/libs/json/doc/Jamfile 3.86 KB
73ef4ff3   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
  #
  # Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com)
  # Copyright (c) 2021 Dmitry Arkhipov (grisumbras@gmail.com)
  #
  # 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)
  #
  # Official repository: https://github.com/cppalliance/json
  #
  
  project json/doc ;
  
  import boostbook ;
  import ../../../tools/docca/docca.jam ;
  
  
  docca.reference reference.qbk
      :
          xsl/custom-overrides.xsl
          [ glob-tree-ex ../include/boost/json : *.hpp *.ipp : detail impl ]
      :
          <doxygen:param>PROJECT_NAME=JSON
          <doxygen:param>PROJECT_BRIEF="JSON Library"
          <doxygen:param>ALIASES="esafe=\"@par Exception Safety\""
          <doxygen:param>FILE_PATTERNS=
          <doxygen:param>EXAMPLE_PATTERNS=
          <doxygen:param>DISTRIBUTE_GROUP_DOC=YES
          <doxygen:param>MACRO_EXPANSION=YES
          <doxygen:param>EXPAND_ONLY_PREDEF=YES
          <doxygen:param>"PREDEFINED=\\
              BOOST_FORCEINLINE \\
              BOOST_JSON_CLASS_DECL \\
              BOOST_JSON_DECL \\
              BOOST_JSON_DOCS \\
              BOOST_JSON_PUBLIC \\
              BOOST_SYMBOL_VISIBLE \\
              \"BOOST_JSON_INLINE_VARIABLE(v, t)=constexpr t v;\" \\
              \"BOOST_JSON_NODISCARD=[[nodiscard]]\" \\
              \"BOOST_JSON_NS_BEGIN=namespace boost { namespace json {\" \\
              \"BOOST_JSON_NS_END=}}\""
          <doxygen:param>ABBREVIATE_BRIEF=
          <doxygen:param>INLINE_INHERITED_MEMB=YES
          <doxygen:param>JAVADOC_AUTOBRIEF=YES
          <doxygen:param>AUTOLINK_SUPPORT=NO
          <doxygen:param>EXTRACT_ALL=YES
          <doxygen:param>EXTRACT_PRIVATE=YES
          <doxygen:param>EXTRACT_LOCAL_CLASSES=NO
          <doxygen:param>SHOW_INCLUDE_FILES=NO
          <doxygen:param>INLINE_INFO=NO
          <doxygen:param>SORT_MEMBER_DOCS=NO
          <doxygen:param>SORT_MEMBERS_CTORS_1ST=YES
          <doxygen:param>SHOW_USED_FILES=NO
          <doxygen:param>SHOW_FILES=NO
          <doxygen:param>SHOW_NAMESPACES=NO
          <doxygen:param>CLASS_DIAGRAMS=NO
  
          # <doxygen:param>ALLOW_UNICODE_NAMES=NO
          # <doxygen:param>GROUP_NESTED_COMPOUNDS=NO
          # <doxygen:param>HIDE_COMPOUND_REFERENCE=NO
          # <doxygen:param>WARN_AS_ERROR=NO
      ;
  
  
  #-------------------------------------------------------------------------------
  #
  # Produce the Boost.Book XML from the QuickBook
  #
  
  install images
      :
          [ glob images/*.png ]
      :
          <location>html/json/images
      ;
  
  explicit images ;
  
  xml json_doc
      :
          qbk/main.qbk
      :
          <dependency>reference.qbk
          <dependency>images
      ;
  
  explicit json_doc ;
  
  #-------------------------------------------------------------------------------
  #
  # HTML documentation for $(BOOST_ROOT)/doc/html
  #
  #-------------------------------------------------------------------------------
  
  boostbook json
      :
          json_doc
      :
          <xsl:param>boost.root=../../../..
          <xsl:param>chapter.autolabel=1
          <xsl:param>chunk.section.depth=8                # Depth to which sections should be chunked
          <xsl:param>chunk.first.sections=1               # Chunk the first top-level section?
          <xsl:param>toc.section.depth=8                  # How deep should recursive sections appear in the TOC?
          <xsl:param>toc.max.depth=8                      # How many levels should be created for each TOC?
          <xsl:param>generate.section.toc.level=8         # Control depth of TOC generation in sections
          <xsl:param>generate.toc="chapter toc,title section nop reference nop"
          <include>../../../tools/boostbook/dtd
      :
          <dependency>images
      ;
  
  #-------------------------------------------------------------------------------
  #
  # These are used to inform the build system of the
  # means to build the integrated and stand-alone docs.
  #
  
  alias boostdoc ;
  explicit boostdoc ;
  
  alias boostrelease : json ;
  explicit boostrelease ;