Jamfile.v2 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Boost.Optional
  2. #
  3. # Copyright (c) 2003-2007 Fernando Luis Cacciola Carballal
  4. #
  5. # Distributed under the Boost Software License, Version 1.0.
  6. # (See accompanying file LICENSE_1_0.txt or copy at
  7. # http://www.boost.org/LICENSE_1_0.txt)
  8. # Quickbook
  9. # -----------------------------------------------------------------------------
  10. using boostbook ;
  11. import quickbook ;
  12. path-constant images : html ;
  13. xml optional
  14. :
  15. 00_optional.qbk
  16. ;
  17. install images
  18. :
  19. images/opt_align1.png
  20. images/opt_align2.png
  21. images/opt_align3.png
  22. images/opt_align4.png
  23. :
  24. <location>html/images
  25. ;
  26. boostbook standalone
  27. :
  28. optional
  29. :
  30. <format>html:<xsl:param>boost.root=../../../..
  31. <format>html:<xsl:param>boost.libraries=../../../../libs/libraries.htm
  32. <xsl:param>chapter.autolabel=0
  33. <xsl:param>chunk.section.depth=8
  34. <xsl:param>toc.section.depth=2
  35. <xsl:param>toc.max.depth=2
  36. <xsl:param>generate.section.toc.level=1
  37. <format>pdf:<xsl:param>img.src.path=$(images)/
  38. <format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/libs/optional/doc/html
  39. <format>docbook:<auto-index-internal>on
  40. ;
  41. ###############################################################################
  42. alias boostdoc ;
  43. explicit boostdoc ;
  44. alias boostrelease : standalone ;
  45. explicit boostrelease ;