Files

128 lines
4.0 KiB
Plaintext
Raw Permalink Normal View History

2017-07-20 08:01:46 -07:00
#
2017-02-06 20:07:03 -05:00
# Copyright (c) 2013-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
2021-04-16 16:24:42 +03:00
# Copyright (c) 2021 Dmitry Arkhipov (grisumbras@gmail.com)
2017-07-20 08:01:46 -07:00
#
# 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)
#
project beast/doc ;
2017-07-24 13:24:15 -07:00
import boostbook ;
2021-04-16 16:24:42 +03:00
import type ;
import ../../../tools/docca/docca.jam ;
2017-07-20 08:01:46 -07:00
2021-04-16 16:24:42 +03:00
if ! [ type.registered IPP ]
{
type.register IPP : ipp : HPP ;
}
2017-07-24 13:24:15 -07:00
2017-07-25 14:50:04 +03:00
2021-04-16 16:24:42 +03:00
docca.reference reference.qbk
2017-07-24 13:24:15 -07:00
:
2021-04-16 16:24:42 +03:00
xsl/custom-overrides.xsl
2022-06-17 22:55:24 -03:00
[ glob-tree-ex ../include/boost/beast : *.hpp *.ipp : detail impl unit_test ]
2017-07-24 13:24:15 -07:00
:
2021-04-16 16:24:42 +03:00
<doxygen:param>PROJECT_NAME=Beast
<doxygen:param>PROJECT_BRIEF="C++ Networking 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_BEAST_DOXYGEN \\
BOOST_BEAST_USE_POSIX_FILE=1 \\
BOOST_BEAST_USE_WIN32_FILE=1 \\
BOOST_BEAST_SPLIT_COMPILATION=1 \\
\"BOOST_BEAST_ASYNC_RESULT1(t)=__deduced__\" \\
\"BOOST_BEAST_ASYNC_RESULT2(t)=__deduced__\" \\
\"BOOST_BEAST_ASYNC_TPARAM1=class\" \\
\"BOOST_BEAST_ASYNC_TPARAM2=class\" \\
\"BOOST_ASIO_INITFN_RESULT_TYPE(t,a)=__deduced__\" \\
\"BOOST_ASIO_COMPLETION_TOKEN_FOR(sig)=class\" \\
GENERATING_DOCUMENTATION \\
BOOST_BEAST_DECL"
<doxygen:param>ABBREVIATE_BRIEF=
<doxygen:param>INLINE_INHERITED_MEMB=YES
<doxygen:param>JAVADOC_AUTOBRIEF=YES
<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
2017-07-24 13:24:15 -07:00
;
#-------------------------------------------------------------------------------
#
# Produce the Boost.Book XML from the QuickBook
#
2017-07-23 22:49:57 -07:00
2017-07-24 13:24:15 -07:00
install images
2016-09-25 11:19:51 -04:00
:
2017-07-23 22:49:57 -07:00
images/message.png
2016-09-25 11:19:51 -04:00
:
2017-07-23 22:49:57 -07:00
<location>html/beast/images
;
2017-07-24 13:24:15 -07:00
explicit images ;
2017-07-28 19:15:55 -07:00
xml beast_doc
:
2019-02-02 16:46:52 -08:00
qbk/main.qbk
2017-07-28 19:15:55 -07:00
:
<dependency>images
2021-04-16 16:24:42 +03:00
<dependency>reference.qbk
2017-07-28 19:15:55 -07:00
;
explicit beast_doc ;
2017-07-24 13:24:15 -07:00
#-------------------------------------------------------------------------------
#
# HTML documentation for $(BOOST_ROOT)/doc/html
#
#-------------------------------------------------------------------------------
2017-07-23 22:49:57 -07:00
boostbook beast
:
beast_doc
:
<xsl:param>boost.root=../../../..
<xsl:param>chapter.autolabel=1
2016-09-25 11:19:51 -04:00
<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
2017-06-04 17:25:55 -07:00
<xsl:param>generate.toc="chapter toc,title section nop reference nop"
2017-07-23 22:49:57 -07:00
<include>../../../tools/boostbook/dtd
2016-09-25 11:19:51 -04:00
:
2017-07-24 13:24:15 -07:00
<dependency>images
2016-09-25 11:19:51 -04:00
;
2017-07-20 08:01:46 -07:00
2017-07-24 13:24:15 -07:00
#-------------------------------------------------------------------------------
#
# These are used to inform the build system of the
# means to build the integrated and stand-alone docs.
#
2017-07-28 19:15:55 -07:00
alias boostdoc ;
2017-07-23 22:49:57 -07:00
explicit boostdoc ;
2017-07-28 19:15:55 -07:00
alias boostrelease : beast ;
explicit boostrelease ;