Jamfile.v2 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Copyright 2016-2017 Joaquín M López Muñoz.
  2. # Copyright 2017 Rene Rivera
  3. # Distributed under the Boost Software License, Version 1.0.
  4. # (See accompanying file LICENSE_1_0.txt or copy at
  5. # http://www.boost.org/LICENSE_1_0.txt)
  6. #
  7. # See http://www.boost.org/libs/poly_collection for library home page.
  8. using quickbook ;
  9. using boostbook ;
  10. # image dependencies
  11. install images_standalone
  12. : [ glob img/*.png ]
  13. : <location>html/poly_collection/img
  14. ;
  15. explicit images_standalone ;
  16. install images_boostdoc
  17. : [ glob img/*.png ]
  18. : <location>../../../doc/html/poly_collection/img
  19. ;
  20. explicit images_boostdoc ;
  21. xml poly_collection : poly_collection.qbk ;
  22. boostbook standalone
  23. : poly_collection
  24. :
  25. <xsl:param>boost.defaults=Boost
  26. <xsl:param>boost.image.src=poly_collection/img/boost.png
  27. <xsl:param>boost.root=http://www.boost.org/doc/libs/develop
  28. <dependency>images_standalone
  29. ;
  30. alias boostdoc : poly_collection : : : <dependency>images_boostdoc ;
  31. explicit boostdoc ;
  32. alias boostrelease ;
  33. explicit boostrelease ;