Files
boost_intrusive/doc/Jamfile.v2

96 lines
3.5 KiB
Plaintext
Raw Normal View History

2007-05-04 21:30:54 +00:00
# Boost.Intrusive library documentation Jamfile
#
2012-05-20 09:54:48 +00:00
# Copyright Ion Gaztanaga 2006.
2007-05-04 21:30:54 +00: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)
#
# See http://www.boost.org/libs/intrusive for documentation.
using auto-index ;
2007-05-04 21:30:54 +00:00
2007-07-22 14:19:19 +00:00
import doxygen ;
2007-05-04 21:30:54 +00:00
import quickbook ;
path-constant here : . ;
2007-05-04 21:30:54 +00:00
2007-07-22 14:19:19 +00:00
doxygen autodoc
2007-05-04 21:30:54 +00:00
:
[ glob ../../../boost/intrusive/*.hpp ]
:
<doxygen:param>HIDE_UNDOC_MEMBERS=YES
<doxygen:param>HIDE_UNDOC_MEMBERS=YES
2007-05-04 21:30:54 +00:00
<doxygen:param>HIDE_UNDOC_CLASSES=YES
<doxygen:param>EXTRACT_PRIVATE=NO
<doxygen:param>ENABLE_PREPROCESSING=YES
<doxygen:param>MACRO_EXPANSION=YES
<doxygen:param>"PREDEFINED=BOOST_INTRUSIVE_DOXYGEN_INVOKED \\
"list_impl=list" \\
"slist_impl=slist" \\
"set_impl=set" \\
"multiset_impl=multiset" \\
"rbtree_impl=rbtree" \\
"unordered_set_impl=unordered_set" \\
"unordered_multiset_impl=unordered_multiset" \\
"hashtable_impl=hashtable" \\
"splay_set_impl=splay_set" \\
"splay_multiset_impl=splay_multiset" \\
2007-10-30 07:02:10 +00:00
"splaytree_impl=splaytree" \\
"sg_set_impl=sg_set" \\
"sg_multiset_impl=sg_multiset" \\
"sgtree_impl=sgtree" \\
2007-10-30 07:02:10 +00:00
"avl_set_impl=avl_set" \\
"avl_multiset_impl=avl_multiset" \\
"avltree_impl=avltree" \\
"treap_set_impl=treap_set" \\
"treap_multiset_impl=treap_multiset" \\
"treap_impl=treap""
2007-05-04 21:30:54 +00:00
;
xml intrusive : intrusive.qbk
2012-05-20 09:54:48 +00:00
:
<include>../../../tools/auto_index/include
2012-05-20 09:54:48 +00:00
;
2007-05-04 21:30:54 +00:00
2007-07-22 14:19:19 +00:00
boostbook standalone
2007-05-04 21:30:54 +00:00
:
2007-07-22 14:19:19 +00:00
intrusive
2007-05-04 21:30:54 +00:00
:
<xsl:param>boost.root=../../../..
<xsl:param>boost.libraries=../../../../libs/libraries.htm
<xsl:param>generate.section.toc.level=3
<xsl:param>chunk.first.sections=1
2007-07-22 14:19:19 +00:00
<dependency>autodoc
# Build requirements go here:
2012-05-20 09:54:48 +00:00
# <auto-index>on (or off) one turns on (or off) indexing:
<auto-index>on
2012-05-20 09:54:48 +00:00
# Turns on (or off) auto-index-verbose for diagnostic info.
# This is highly recommended until you have got all the many details correct!
2012-05-20 09:54:48 +00:00
<auto-index-verbose>on
# Choose the indexing method (separately for html and PDF) - see manual.
# Choose indexing method for PDFs:
<format>pdf:<auto-index-internal>off
2012-05-20 09:54:48 +00:00
# Choose indexing method for html:
<format>html:<auto-index-internal>on
2012-05-20 09:54:48 +00:00
# Set the name of the script file to use (index.idx is popular):
<auto-index-script>$(here)/index.idx
# Commands in the script file should all use RELATIVE PATHS
# otherwise the script will not be portable to other machines.
2012-05-20 09:54:48 +00:00
# Relative paths are normally taken as relative to the location
# of the script file, but we can add a prefix to all
# those relative paths using the <auto-index-prefix> feature.
# The path specified by <auto-index-prefix> may be either relative or
# absolute, for example the following will get us up to the boost root
# directory for most Boost libraries:
<auto-index-prefix>"$(here)/../../.."
2007-05-04 21:30:54 +00:00
;
install pdf-install : standalone : <name>intrusive.pdf <location>. <install-type>PDF <format>pdf ;
explicit pdf-install ;