Jamfile.v2 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # Copyright (c) 2001 Jaakko J�rvi
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # (See accompanying file LICENSE_1_0.txt or copy at
  4. # http://www.boost.org/LICENSE_1_0.txt)
  5. project doc/tuple ;
  6. import boostbook ;
  7. import quickbook ;
  8. xml tuple : tuple_users_guide.qbk ;
  9. boostbook standalone_tuple
  10. :
  11. tuple
  12. :
  13. <xsl:param>boost.root=../../../..
  14. # File name of HTML output:
  15. <xsl:param>root.filename=tuple_users_guide
  16. # How far down we chunk nested sections, basically all of them:
  17. <xsl:param>chunk.section.depth=0
  18. # Don't put the first section on the same page as the TOC:
  19. <xsl:param>chunk.first.sections=0
  20. # How far down sections get TOC's
  21. <xsl:param>toc.section.depth=1
  22. # Max depth in each TOC:
  23. <xsl:param>toc.max.depth=1
  24. # How far down we go with TOC's
  25. <xsl:param>generate.section.toc.level=0
  26. ;
  27. ###############################################################################
  28. alias boostdoc ;
  29. explicit boostdoc ;
  30. alias boostrelease : standalone_tuple ;
  31. explicit boostrelease ;