]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/utility/identity_type/doc/Jamfile.v2
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / utility / identity_type / doc / Jamfile.v2
CommitLineData
7c673cae
FG
1
2# Copyright (C) 2009-2012 Lorenzo Caminiti
3# Distributed under the Boost Software License, Version 1.0
4# (see accompanying file LICENSE_1_0.txt or a copy at
5# http://www.boost.org/LICENSE_1_0.txt)
6# Home at http://www.boost.org/libs/utility/identity_type
7
8import quickbook ;
9using boostbook ;
10
11doxygen reference : ../../../../boost/utility/identity_type.hpp
12 : <reftitle>"Reference"
13 <doxygen:param>PREDEFINED="DOXYGEN"
14 <doxygen:param>QUIET=YES
15 <doxygen:param>WARN_IF_UNDOCUMENTED=NO
16 <doxygen:param>HIDE_UNDOC_MEMBERS=YES
17 <doxygen:param>HIDE_UNDOC_CLASSES=YES
18 <doxygen:param>ALIASES=" Params=\"<b>Parameters:</b> <table border="0">\" Param{2}=\"<tr><td><b><tt>\\1</tt></b></td><td>\\2</td></tr>\" EndParams=\"</table>\" Returns=\"<b>Returns:</b>\" Note=\"<b>Note:</b>\" Warning=\"<b>Warning:</b>\" See=\"<b>See:</b>\" RefSect{2}=\"\\xmlonly<link linkend='boost_utility_identitytype.\\1'>\\2</link>\\endxmlonly\" RefClass{1}=\"\\xmlonly<computeroutput><classname alt='\\1'>\\1</classname></computeroutput>\\endxmlonly\" RefFunc{1}=\"\\xmlonly<computeroutput><functionname alt='\\1'>\\1</functionname></computeroutput>\\endxmlonly\" RefMacro{1}=\"\\xmlonly<computeroutput><macroname alt='\\1'>\\1</macroname></computeroutput>\\endxmlonly\" "
19 ;
20
21# This target must be called "index" so to generate "index.html" file.
22xml index : identity_type.qbk : <dependency>reference ;
23
24boostbook doc : index
25 : <location>html
26 <format>onehtml
27 <xsl:param>toc.section.depth=0
28 <xsl:param>html.stylesheet=../../../../../doc/src/boostbook.css
29 <xsl:param>boost.root=../../../../..
30 ;
31
32#
33# This is very imperfect - it results in both html and pdf docs being built,
34# for some reason I can't get the "onehtml" format specified above to play nice
35# with the usual incantations for mixed pdf/html builds. JM 06/2012.
36#
37boostbook pdf_doc : index
38 :
39 <format>pdf
40 <format>html:<build>no
41 ;
42
43install pdf_doc_install : pdf_doc : <location>. <name>identity_type.pdf <install-type>PDF ;
44explicit pdf_doc_install ;