Jamfile.v2 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # Copyright John Maddock 2005. Use, modification, and distribution are
  2. # subject to the Boost Software License, Version 1.0. (See accompanying
  3. # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. using quickbook ;
  5. xml integer : integer.qbk ;
  6. boostbook standalone
  7. :
  8. integer
  9. :
  10. # HTML options first:
  11. # Use graphics not text for navigation:
  12. <xsl:param>navig.graphics=1
  13. # How far down we chunk nested sections, basically all of them:
  14. <xsl:param>chunk.section.depth=1
  15. # Don't put the first section on the same page as the TOC:
  16. <xsl:param>chunk.first.sections=0
  17. # How far down sections get TOC's
  18. <xsl:param>toc.section.depth=1
  19. # Max depth in each TOC:
  20. <xsl:param>toc.max.depth=1
  21. # How far down we go with TOC's
  22. <xsl:param>generate.section.toc.level=4
  23. # Path for links to Boost:
  24. <xsl:param>boost.root=../../../..
  25. # PDF Options:
  26. # TOC Generation: this is needed for FOP-0.9 and later:
  27. <xsl:param>fop1.extensions=0
  28. # Or enable this if you're using XEP:
  29. <xsl:param>xep.extensions=1
  30. # TOC generation: this is needed for FOP 0.2, but must not be set to zero for FOP-0.9!
  31. <xsl:param>fop.extensions=0
  32. # No indent on body text:
  33. <xsl:param>body.start.indent=0pt
  34. # Margin size:
  35. <xsl:param>page.margin.inner=0.5in
  36. # Margin size:
  37. <xsl:param>page.margin.outer=0.5in
  38. # Yes, we want graphics for admonishments:
  39. <xsl:param>admon.graphics=1
  40. # Set this one for PDF generation *only*:
  41. # default pnd graphics are awful in PDF form,
  42. # better use SVG's instead:
  43. <format>pdf:<xsl:param>admon.graphics.extension=".svg"
  44. <format>pdf:<xsl:param>admon.graphics.path=$(boost-images)/
  45. <format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/libs/regex/doc/html
  46. ;
  47. install pdfinstall : standalone/<format>pdf : <location>. <install-type>PDF ;
  48. explicit pdfinstall ;
  49. ###############################################################################
  50. alias boostdoc ;
  51. explicit boostdoc ;
  52. alias boostrelease : standalone ;
  53. explicit boostrelease ;