# # Copyright (c) 2019 Vinnie Falco (vinnie.falco@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/vinniefalco/url # project url/doc ; import boostbook ; import os ; import ../../../tools/docca/docca.jam ; local broot = [ os.environ BOOST_ROOT ] ; path-constant out : . ; docca.reference reference.qbk : xsl/custom-overrides.xsl [ glob-tree-ex ../include/boost/url : *.hpp *.ipp : detail impl ] : PROJECT_NAME=URL PROJECT_BRIEF="URL Library" ALIASES="esafe=\"@par Exception Safety\"" FILE_PATTERNS= EXAMPLE_PATTERNS= DISTRIBUTE_GROUP_DOC=YES MACRO_EXPANSION=YES EXPAND_ONLY_PREDEF=YES "PREDEFINED=\\ BOOST_SYMBOL_VISIBLE \\ BOOST_URL_DOCS \\ BOOST_URL_DECL \\ BOOST_URL_PUBLIC \\ BOOST_URL_FORCEINLINE \\ BOOST_URL_HAS_STRING_VIEW \\ \"BOOST_URL_NODISCARD=[[nodiscard]]\" \\ \"BOOST_STATIC_ASSERT(x)=\" \\ \"BOOST_URL_INLINE_VARIABLE(v, t)=constexpr t v;\"" ABBREVIATE_BRIEF= INLINE_INHERITED_MEMB=YES JAVADOC_AUTOBRIEF=YES AUTOLINK_SUPPORT=NO 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 stylesheets : $(broot)/doc/src/boostbook.css : $(out)/html ; explicit stylesheets ; install images : [ glob images/*.png ] : html/url/images ; explicit images ; xml url_doc : qbk/0.main.qbk : reference.qbk images # $(broot)/tools/boostbook/dtd ; explicit url_doc ; install treeimages : [ glob $(broot)/doc/src/images/*.png ] images/doc-logo.png : $(out)/html/images ; explicit treeimages ; #------------------------------------------------------------------------------- # # HTML documentation for $(BOOST_ROOT)/doc/html # #------------------------------------------------------------------------------- boostbook url : url_doc : boost.root=../../../.. nav.layout=none boost.image.src=images/doc-logo.png boost.image.alt="Boost.URL Logo" boost.image.w=880 boost.image.h=80 boost.graphics.root=images/ html.stylesheet=boostbook.css 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 : stylesheets treeimages 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 : url ; explicit boostrelease ;