Jamfile.v2 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. project tools/documentation ;
  2. xml intro : src/intro.qbk ;
  3. boostbook standalone
  4. :
  5. intro
  6. :
  7. # Path for links to Boost:
  8. <xsl:param>boost.root=../../..
  9. # Path for libraries index:
  10. <xsl:param>boost.libraries=../../../libs/libraries.htm
  11. # Use the main Boost stylesheet:
  12. <xsl:param>html.stylesheet=../../../doc/html/boostbook.css
  13. # Some general style settings:
  14. <xsl:param>table.footnote.number.format=1
  15. <xsl:param>footnote.number.format=1
  16. # HTML options first:
  17. # Use graphics not text for navigation:
  18. <xsl:param>navig.graphics=1
  19. # How far down we chunk nested sections, basically all of them:
  20. <xsl:param>chunk.section.depth=1
  21. # Don't put the first section on the same page as the TOC:
  22. <xsl:param>chunk.first.sections=0
  23. # How far down sections get TOC's
  24. <xsl:param>toc.section.depth=1
  25. ;
  26. # Build the documentation combined with the boostbook and quickbook
  27. # documentation. This clashes with the standalone documentation.
  28. boostbook combined
  29. :
  30. src/docs.xml
  31. :
  32. <dependency>intro
  33. <implicit-dependency>intro
  34. <dependency>../quickbook/doc//quickbook
  35. <implicit-dependency>../quickbook/doc//quickbook
  36. <xsl:param>boost.root=../../..
  37. <xsl:param>boost.libraries=../../../libs/libraries.htm
  38. <xsl:param>html.stylesheet=../../../doc/html/boostbook.css
  39. ;
  40. explicit combined ;
粤ICP备19079148号