Blame view

3rdparty/boost_1_81_0/libs/dll/doc/Jamfile.v2 3.19 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
  # Copyright (c) 2014 Renato Tegon Forti, Antony Polukhin.
  # Copyright (c) 2015-2019 Antony Polukhin.
  #
  # 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 ;
  using doxygen ;
  using xsltproc ;
  
  import set ;
  import doxygen ;
  import xsltproc ;
  import notfile ;
  import path ;
  
  project dll/doc ;
  
  #
  # Common params for doxygen
  # 
  
  local doxygen_params =
      <doxygen:param>HIDE_UNDOC_MEMBERS=YES
      <doxygen:param>HIDE_UNDOC_CLASSES=YES
      <doxygen:param>HIDE_SCOPE_NAMES=YES
      <doxygen:param>EXTRACT_ALL=NO
      <doxygen:param>EXTRACT_PRIVATE=NO
      <doxygen:param>BUILTIN_STL_SUPPORT=YES
      <doxygen:param>ENABLE_PREPROCESSING=YES
      <doxygen:param>MACRO_EXPANSION=YES
      <doxygen:param>"ALIASES= \\
          \"forcedlink{1}=\\xmlonly<link linkend='boost.dll.\\1'>boost::dll::\\1</link>\\endxmlonly\" \\
          \"forcedlinkfs{1}=\\xmlonly<link linkend='boost.dll.fs.\\1'>boost::dll::fs::\\1</link>\\endxmlonly\" \\
          \"forcedmacrolink{1}=\\xmlonly<link linkend='\\1'>\\1</link>\\endxmlonly\" "
      <doxygen:param>"PREDEFINED= \\
          \"BOOST_RV_REF(T)=T&&\" \\
          \"BOOST_RV_REF(shared_library)=shared_library&&\" \\
          \"BOOST_COPY_ASSIGN_REF(shared_library)=const shared_library&\" \\
          \"BOOST_MOVABLE_BUT_NOT_COPYABLE(shared_library)= \\
              shared_library(const shared_library&) = delete; \\
              shared_library& operator=(const shared_library&) = delete; \" \\
          \"BOOST_DLL_IMPORT_RESULT_TYPE=result_type\" \\
          \"BOOST_DLL_MANGLED_IMPORT_RESULT_TYPE=result_type\" \\
          \"BOOST_EXPLICIT_OPERATOR_BOOL()=explicit operator bool() const noexcept;\" \\
          \"BOOST_DLL_DOXYGEN\" "
      ;
  
  #
  # Ref Sessions Generation
  #
  doxygen autodoc_shared_library_core
      :
          [ glob 
              ../include/boost/dll/config.hpp
              ../include/boost/dll/shared_library.hpp
              ../include/boost/dll/shared_library_load_mode.hpp
              ../include/boost/dll/library_info.hpp
              ../include/boost/dll/runtime_symbol_info.hpp
              ../include/boost/dll/alias.hpp
  
              ../include/boost/dll/smart_library.hpp
          ]
      :
          $(doxygen_params)
          <xsl:param>"boost.doxygen.reftitle=Shared Library Reference"
      ;
  
  doxygen autodoc_shared_library_refcountable
      :
          [ glob 
              ../include/boost/dll/import.hpp
              ../include/boost/dll/import_class.hpp
              ../include/boost/dll/import_mangled.hpp
          ]
      :
          $(doxygen_params)
          <xsl:param>"boost.doxygen.reftitle=Shared Library Refcountable Reference"
      ;
  
  #
  # Docs Generation
  #
  boostbook dll-doc
      :
          dll.qbk
      :
          <dependency>autodoc_shared_library_core
          <dependency>autodoc_shared_library_refcountable
          <xsl:param>boost.root=http://www.boost.org/doc/libs/1_60_0
          #<xsl:param>boost.root=../../../.
          <xml:param>html.stylesheet=../../../../doc/src/boostbook.css
      ;
  
  ###############################################################################
  alias boostdoc
      : dll-doc/<format>docbook
      :
      :
      : ;
  explicit boostdoc ;
  alias boostrelease ;
  explicit boostrelease ;