Jamfile.v2 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. path-constant boost-images : ../../../doc/src/images ;
  6. xml static_assert : static_assert.qbk ;
  7. boostbook standalone
  8. :
  9. static_assert
  10. :
  11. <xsl:param>boost.root=../../../..
  12. <xsl:param>nav.layout=none
  13. <xsl:param>navig.graphics=0
  14. # PDF Options:
  15. # TOC Generation: this is needed for FOP-0.9 and later:
  16. <xsl:param>fop1.extensions=0
  17. # Or enable this if you're using XEP:
  18. <xsl:param>xep.extensions=1
  19. # TOC generation: this is needed for FOP 0.2, but must not be set to zero for FOP-0.9!
  20. <xsl:param>fop.extensions=0
  21. # No indent on body text:
  22. <xsl:param>body.start.indent=0pt
  23. # Margin size:
  24. <xsl:param>page.margin.inner=0.5in
  25. # Margin size:
  26. <xsl:param>page.margin.outer=0.5in
  27. # Yes, we want graphics for admonishments:
  28. <xsl:param>admon.graphics=1
  29. # Set this one for PDF generation *only*:
  30. # default pnd graphics are awful in PDF form,
  31. # better use SVG's instead:
  32. <format>pdf:<xsl:param>admon.graphics.extension=".svg"
  33. <format>pdf:<xsl:param>admon.graphics.path=$(boost-images)/
  34. <format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/doc/html
  35. ;
  36. ###############################################################################
  37. alias boostdoc
  38. : static_assert
  39. :
  40. :
  41. : ;
  42. explicit boostdoc ;
  43. alias boostrelease ;
  44. explicit boostrelease ;