Jamfile.v2 1.56 KB
# Boost.Icl
#
# Copyright (c) 2008-2009 Joachim Faulhaber
# Copyright (c) 2000-2006 Cortex Software GmbH
#
# 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)

import doxygen ;
import quickbook ;

# -----------------------------------------------------------------------------
# Doxygen
# -----------------------------------------------------------------------------

doxygen icldoc
    :
        [ glob ../../../boost/icl/*.hpp ]
    :
        <doxygen:param>EXTRACT_ALL=NO
        <doxygen:param>HIDE_UNDOC_MEMBERS=YES
        <doxygen:param>EXTRACT_PRIVATE=NO
        <doxygen:param>ENABLE_PREPROCESSING=YES
        <doxygen:param>MACRO_EXPANSION=NO
        <doxygen:param>EXPAND_ONLY_PREDEF=YES
        <doxygen:param>SEARCH_INCLUDES=NO
        <reftitle>"Interval Container Library Reference"
    ;


# -----------------------------------------------------------------------------
# Quickbook
# -----------------------------------------------------------------------------

import quickbook ;

xml icl
    :
        icl.qbk
    ;

boostbook standalone
    :
        icl
    :
        <xsl:param>boost.root=../../../..
        <xsl:param>boost.libraries=../../../libraries.htm
        <xsl:param>toc.max.depth=2
        <xsl:param>toc.section.depth=2
        <xsl:param>chunk.section.depth=2
		<dependency>icldoc

    ;

###############################################################################
alias boostdoc ;
explicit boostdoc ;
alias boostrelease : standalone ;
explicit boostrelease ;