# # Copyright (c) 2013-2017 Vinnie Falco (vinnie dot falco at gmail dot 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) # project beast/doc ; import boostbook ; import type ; import ../../../tools/docca/docca.jam ; if ! [ type.registered IPP ] { type.register IPP : ipp : HPP ; } docca.reference reference.qbk : xsl/custom-overrides.xsl [ glob-tree-ex ../include/boost/beast : *.hpp *.ipp : detail impl unit_test ] : PROJECT_NAME=Beast PROJECT_BRIEF="C++ Networking Library" ALIASES="esafe=\"@par Exception Safety\"" FILE_PATTERNS= EXAMPLE_PATTERNS= DISTRIBUTE_GROUP_DOC=YES MACRO_EXPANSION=YES EXPAND_ONLY_PREDEF=YES 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_DEFAULT_COMPLETION_TOKEN(e)= =__deduced__\" \\ \"BOOST_ASIO_COMPLETION_TOKEN_FOR(sig)=class\" \\ GENERATING_DOCUMENTATION \\ BOOST_BEAST_DECL" ABBREVIATE_BRIEF= INLINE_INHERITED_MEMB=YES JAVADOC_AUTOBRIEF=YES EXTRACT_ALL=YES EXTRACT_PRIVATE=YES EXTRACT_LOCAL_CLASSES=NO SHOW_INCLUDE_FILES=NO INLINE_INFO=NO SORT_MEMBER_DOCS=NO SORT_MEMBERS_CTORS_1ST=YES SHOW_USED_FILES=NO SHOW_FILES=NO SHOW_NAMESPACES=NO CLASS_DIAGRAMS=NO # ALLOW_UNICODE_NAMES=NO # GROUP_NESTED_COMPOUNDS=NO # HIDE_COMPOUND_REFERENCE=NO # WARN_AS_ERROR=NO ; #------------------------------------------------------------------------------- # # Produce the Boost.Book XML from the QuickBook # install images : images/message.png : html/beast/images ; explicit images ; xml beast_doc : qbk/main.qbk : images reference.qbk ; explicit beast_doc ; #------------------------------------------------------------------------------- # # HTML documentation for $(BOOST_ROOT)/doc/html # #------------------------------------------------------------------------------- boostbook beast : beast_doc : boost.root=../../../.. chapter.autolabel=1 chunk.section.depth=8 # Depth to which sections should be chunked chunk.first.sections=1 # Chunk the first top-level section? toc.section.depth=8 # How deep should recursive sections appear in the TOC? toc.max.depth=8 # How many levels should be created for each TOC? generate.section.toc.level=8 # Control depth of TOC generation in sections generate.toc="chapter toc,title section nop reference nop" ../../../tools/boostbook/dtd : 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 : beast ; explicit boostrelease ;