Jamfile.v2 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. # Boost.Chrono library documentation Jamfile ---------------------------------
  2. #
  3. # Copyright Vicente J. Botet Escriba 2009. Use, modification and
  4. # distribution is subject to the Boost Software License, Version
  5. # 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  6. # http://www.boost.org/LICENSE_1_0.txt)
  7. #
  8. # See http://www.boost.org for updates, documentation, and revision history.
  9. #import doxygen ;
  10. using quickbook ;
  11. #doxygen autodoc
  12. # :
  13. # [ glob ../../../boost/chrono/*.hpp ]
  14. # [ glob ../../../boost/chrono/allocators/*.hpp ]
  15. # :
  16. # <doxygen:param>EXTRACT_ALL=NO
  17. # <doxygen:param>HIDE_UNDOC_MEMBERS=YES
  18. # <doxygen:param>EXTRACT_PRIVATE=NO
  19. # <doxygen:param>EXPAND_ONLY_PREDEF=YES
  20. # <doxygen:param>PREDEFINED=BOOST_INTERPROCESS_DOXYGEN_INVOKED
  21. # <xsl:param>"boost.doxygen.reftitle=Boost.Chrono Reference"
  22. # ;
  23. xml chrono : chrono.qbk ;
  24. boostbook standalone
  25. :
  26. chrono
  27. :
  28. # HTML options first:
  29. # Use graphics not text for navigation:
  30. <xsl:param>navig.graphics=1
  31. # How far down we chunk nested sections, basically all of them:
  32. <xsl:param>chunk.section.depth=2
  33. # Don't put the first section on the same page as the TOC:
  34. <xsl:param>chunk.first.sections=1
  35. # How far down sections get TOC's
  36. <xsl:param>toc.section.depth=4
  37. # Max depth in each TOC:
  38. <xsl:param>toc.max.depth=2
  39. # How far down we go with TOC's
  40. <xsl:param>generate.section.toc.level=10
  41. # Path for links to Boost:
  42. <xsl:param>boost.root=../../../..
  43. # Path for libraries index:
  44. <xsl:param>boost.libraries=../../../../libs/libraries.htm
  45. # Use the main Boost stylesheet:
  46. <xsl:param>html.stylesheet=../../../../doc/src/boostbook.css
  47. # PDF Options:
  48. # TOC Generation: this is needed for FOP-0.9 and later:
  49. <format>pdf:<xsl:param>fop1.extensions=0
  50. # Or enable this if you're using XEP:
  51. <format>pdf:<xsl:param>xep.extensions=1
  52. # TOC generation: this is needed for FOP 0.2, but must not be set to zero for FOP-0.9!
  53. <format>pdf:<xsl:param>fop.extensions=0
  54. # No indent on body text:
  55. <xsl:param>body.start.indent=0pt
  56. # Margin size:
  57. <xsl:param>page.margin.inner=0.5in
  58. # Margin size:
  59. <xsl:param>page.margin.outer=0.5in
  60. # Yes, we want graphics for admonishments:
  61. <xsl:param>admon.graphics=1
  62. # Set this one for PDF generation *only*:
  63. # default pnd graphics are awful in PDF form,
  64. # better use SVG's instead:
  65. <format>pdf:<xsl:param>admon.graphics.extension=".svg"
  66. <format>pdf:<xsl:param>admon.graphics.path=$(boost-images)
  67. <format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/libs/chrono/doc/html
  68. ;
  69. install pdfinstall : standalone/<format>pdf : <location>. <install-type>PDF ;
  70. explicit pdfinstall ;
  71. ###############################################################################
  72. alias boostdoc
  73. : chrono
  74. :
  75. :
  76. : ;
  77. explicit boostdoc ;
  78. alias boostrelease ;
  79. explicit boostrelease ;