Jamfile.v2 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # (C) Copyright 2008 Anthony Williams
  2. #
  3. # Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. project coroutine/doc ;
  6. import boostbook ;
  7. import quickbook ;
  8. import modules ;
  9. path-constant here : . ;
  10. boostbook coro
  11. :
  12. coro.qbk
  13. :
  14. # Path for links to Boost:
  15. <xsl:param>boost.root=../../../..
  16. # HTML options first:
  17. # How far down we chunk nested sections, basically all of them:
  18. <xsl:param>chunk.section.depth=3
  19. # Don't put the first section on the same page as the TOC:
  20. <xsl:param>chunk.first.sections=1
  21. # How far down sections get TOC's
  22. <xsl:param>toc.section.depth=10
  23. # Max depth in each TOC:
  24. <xsl:param>toc.max.depth=3
  25. # How far down we go with TOC's
  26. <xsl:param>generate.section.toc.level=10
  27. # Absolute path for images:
  28. <format>pdf:<xsl:param>img.src.path=$(here)/html/
  29. ;
  30. ###############################################################################
  31. alias boostdoc ;
  32. explicit boostdoc ;
  33. alias boostrelease : coro ;
  34. explicit boostrelease ;