jamfile.v2 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Boost.Bimap
  2. #
  3. # Copyright (c) 2006-2007 Matias Capeletto
  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. import quickbook ;
  11. xml bimap
  12. :
  13. bimap.qbk
  14. ;
  15. path-constant images_location : html ;
  16. boostbook standalone
  17. :
  18. bimap
  19. :
  20. <xsl:param>boost.root=../../../..
  21. <xsl:param>html.stylesheet=boostbook.css
  22. <xsl:param>toc.max.depth=2
  23. <xsl:param>toc.section.depth=4
  24. <xsl:param>chunk.section.depth=2
  25. <format>pdf:<xsl:param>img.src.path=$(images_location)/
  26. <format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/libs/bimap/doc/html
  27. ;
  28. # Doxygen
  29. # -----------------------------------------------------------------------------
  30. # This generate the doxydocs and write "bimap.hdt".
  31. # Delete this file if you want to regenerate the doxydocs again
  32. # import directdoxygen ;
  33. # html-doxydocs bimap.hdt : bimap.hdf ;
  34. ###############################################################################
  35. alias boostdoc ;
  36. explicit boostdoc ;
  37. alias boostrelease : standalone ;
  38. explicit boostrelease ;