Jamfile.v2 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Copyright Paul A. Bristow 2008
  2. # Copyright John Maddock 2008
  3. # Distributed under the Boost Software License, Version 1.0.
  4. # (See accompanying file LICENSE_1_0.txt
  5. # or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. # Reminder: whitespace MUST terminate variable name!
  7. # so space BEFORE ; and :
  8. # Distexplorer documentation as html from Quickbook.
  9. # project boost/doc ;
  10. using quickbook ;
  11. #path-constant images_location : html ;
  12. # location of SVG images referenced by Quickbook.
  13. # screenshots installed as recomended by Sourceforge.
  14. xml distexplorer
  15. :
  16. distexplorer.qbk
  17. :
  18. ;
  19. # import boostbook : boostbook ;
  20. boostbook standalone
  21. :
  22. distexplorer
  23. :
  24. # Path for links to Boost:
  25. <xsl:param>boost.root=../../../../..
  26. # Some general style settings:
  27. <xsl:param>table.footnote.number.format=1
  28. <xsl:param>footnote.number.format=1
  29. # HTML options first:
  30. # Use graphics not text for navigation:
  31. <xsl:param>navig.graphics=1
  32. # How far down we chunk nested sections, basically all of them:
  33. <xsl:param>chunk.section.depth=10
  34. # Don't put the first section on the same page as the TOC:
  35. <xsl:param>chunk.first.sections=1
  36. # How far down sections get TOC's
  37. <xsl:param>toc.section.depth=10
  38. # Max depth in each TOC:
  39. <xsl:param>toc.max.depth=4
  40. # How far down we go with TOC's
  41. <xsl:param>generate.section.toc.level=10
  42. #<xsl:param>root.filename="distexplorer"
  43. ;