diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2013-06-25 22:59:01 +0000 |
---|---|---|
committer | <> | 2013-09-27 11:49:28 +0000 |
commit | 8c4528713d907ee2cfd3bfcbbad272c749867f84 (patch) | |
tree | c09e2ce80f47b90c85cc720f5139089ad9c8cfff /libs/algorithm/doc/Jamfile.v2 | |
download | boost-tarball-baserock/morph.tar.gz |
Imported from /home/lorry/working-area/delta_boost-tarball/boost_1_54_0.tar.bz2.boost_1_54_0baserock/morph
Diffstat (limited to 'libs/algorithm/doc/Jamfile.v2')
-rw-r--r-- | libs/algorithm/doc/Jamfile.v2 | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/libs/algorithm/doc/Jamfile.v2 b/libs/algorithm/doc/Jamfile.v2 new file mode 100644 index 000000000..6af112979 --- /dev/null +++ b/libs/algorithm/doc/Jamfile.v2 @@ -0,0 +1,46 @@ +# Boost.Algorithm +# +# Copyright (c) 2010-2012 Marshall Clow +# +# 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) + + +# Quickbook +# ----------------------------------------------------------------------------- + +import os ; + +using quickbook ; +using doxygen ; +using boostbook ; + +doxygen autodoc + : + [ glob ../../../boost/algorithm/*.hpp + ../../../boost/algorithm/searching/*.hpp + ../../../boost/algorithm/cxx11/*.hpp + ../../../boost/algorithm/cxx14/*.hpp + ] + : + <doxygen:param>"PREDEFINED=\"BOOST_ALGORITHM_DOXYGEN=1\"" + <doxygen:param>WARNINGS=YES # Default NO, but useful to see warnings, especially in a logfile. + ; + + +xml algorithm : algorithm.qbk ; + +boostbook standalone + : + algorithm + : + <dependency>autodoc + <xsl:param>boost.root=../../../.. + <xsl:param>"boost.doxygen.reftitle=Boost.Algorithms C++ Reference" + <xsl:param>chapter.autolabel=0 + <xsl:param>chunk.section.depth=8 + <xsl:param>toc.section.depth=2 + <xsl:param>toc.max.depth=2 + <xsl:param>generate.section.toc.level=1 + ; |