Jamfile.v2 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Copyright (c) 2016 Mikhail Maximov <vigorous.activity -at- gmail.com>
  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/conversion ;
  6. using quickbook ;
  7. import boostbook ;
  8. xml conversion : conversion.qbk ;
  9. boostbook standalone
  10. :
  11. conversion
  12. :
  13. <xsl:param>boost.root=../../../..
  14. # File name of HTML output:
  15. <xsl:param>root.filename=conversion
  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=2
  22. # Max depth in each TOC:
  23. <xsl:param>toc.max.depth=2
  24. # How far down we go with TOC's
  25. <xsl:param>generate.section.toc.level=0
  26. <xsl:param>generate.manifest=0
  27. ;
  28. ###############################################################################
  29. alias boostdoc : conversion ;
  30. explicit boostdoc ;
  31. alias boostrelease ;
  32. explicit boostrelease ;