Jamfile.v2 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Copyright (C) 2009-2012 Lorenzo Caminiti
  2. # Distributed under the Boost Software License, Version 1.0
  3. # (see accompanying file LICENSE_1_0.txt or a copy at
  4. # http://www.boost.org/LICENSE_1_0.txt)
  5. # Home at http://www.boost.org/libs/utility/identity_type
  6. import quickbook ;
  7. using boostbook ;
  8. doxygen reference : ../../../../boost/utility/identity_type.hpp
  9. : <reftitle>"Reference"
  10. <doxygen:param>PREDEFINED="DOXYGEN"
  11. <doxygen:param>QUIET=YES
  12. <doxygen:param>WARN_IF_UNDOCUMENTED=NO
  13. <doxygen:param>HIDE_UNDOC_MEMBERS=YES
  14. <doxygen:param>HIDE_UNDOC_CLASSES=YES
  15. <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\" "
  16. ;
  17. # This target must be called "index" so to generate "index.html" file.
  18. xml index : identity_type.qbk : <dependency>reference ;
  19. boostbook doc : index
  20. : <location>html
  21. <format>onehtml
  22. <xsl:param>toc.section.depth=0
  23. <xsl:param>html.stylesheet=../../../../../doc/src/boostbook.css
  24. <xsl:param>boost.root=../../../../..
  25. ;
  26. #
  27. # This is very imperfect - it results in both html and pdf docs being built,
  28. # for some reason I can't get the "onehtml" format specified above to play nice
  29. # with the usual incantations for mixed pdf/html builds. JM 06/2012.
  30. #
  31. boostbook pdf_doc : index
  32. :
  33. <format>pdf
  34. <format>html:<build>no
  35. ;
  36. install pdf_doc_install : pdf_doc : <location>. <name>identity_type.pdf <install-type>PDF ;
  37. explicit pdf_doc_install ;