2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-20 14:42:21 +00:00
Files
fiber/libs/reflection/doc/Jamfile.v2
Oliver Kowalke 39ec793737 initial checkin
2011-02-09 18:41:35 +01:00

51 lines
1.4 KiB
Plaintext

# Boost.Extension - documentation Jamfile
#
# Copyright 2008 Jeremy Pack
# 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)
#
# See http://www.boost.org/ for latest version.
#
import doxygen ;
import quickbook ;
import os ;
local BOOST_ROOT = [ os.environ BOOST_ROOT ] ;
doxygen autodoc
:
[ glob ../../../boost/reflection/common.hpp ]
:
<doxygen:param>EXTRACT_ALL=NO
<doxygen:param>"PREDEFINED=\"BOOST_REFLECTION_DOXYGEN_INVOKED\" \\
\"U_EXPORT2=\""
<doxygen:param>HIDE_UNDOC_MEMBERS=NO
<doxygen:param>EXTRACT_PRIVATE=NO
<doxygen:param>ENABLE_PREPROCESSING=YES
<doxygen:param>MACRO_EXPANSION=YES
<doxygen:param>EXPAND_ONLY_PREDEF=YES
<doxygen:param>SEARCH_INCLUDES=YES
<doxygen:param>INCLUDE_PATH=$(BOOST_ROOT)
;
xml reflection : reflection.qbk ;
boostbook standalone
:
reflection
:
<xsl:param>toc.max.depth=300
<xsl:param>toc.section.depth=2
<xsl:param>chunk.section.depth=1
<dependency>autodoc
;
install css : [ glob $(BOOST_ROOT)/doc/src/*.css ]
: <location>html ;
install images : [ glob $(BOOST_ROOT)/doc/src/images/*.png ]
: <location>html/images ;
install main_image : [ glob $(BOOST_ROOT)/boost.png ]
: <location>../ ;