Jamfile.v2 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Boost.PropertyTree
  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 doxygen ;
  11. import quickbook ;
  12. doxygen autodoc
  13. :
  14. [ glob ../../../boost/property_tree/*.hpp ]
  15. :
  16. <doxygen:param>EXTRACT_ALL=YES
  17. <doxygen:param>"PREDEFINED=\"BOOST_PROPERTY_TREE_DOXYGEN_INVOKED\" \\
  18. \"BOOST_DEDUCED_TYPENAME=typename\""
  19. <doxygen:param>HIDE_UNDOC_MEMBERS=NO
  20. <doxygen:param>EXTRACT_PRIVATE=NO
  21. <doxygen:param>ENABLE_PREPROCESSING=YES
  22. <doxygen:param>MACRO_EXPANSION=YES
  23. <doxygen:param>EXPAND_ONLY_PREDEF=YES
  24. <doxygen:param>SEARCH_INCLUDES=YES
  25. <doxygen:param>INCLUDE_PATH=$(BOOST_ROOT)
  26. <doxygen:param>EXAMPLE_PATH=$(BOOST_ROOT)/libs/property_tree/examples
  27. <doxygen:param>BRIEF_MEMBER_DESC=YES
  28. <doxygen:param>REPEAT_BRIEF=YES
  29. <doxygen:param>ALWAYS_DETAILED_SEC=YES
  30. <doxygen:param>MULTILINE_CPP_IS_BRIEF=YES
  31. ;
  32. xml property_tree : property_tree.qbk ;
  33. boostbook standalone
  34. : property_tree
  35. : <xsl:param>boost.root=../../../..
  36. <xsl:param>toc.max.depth=3
  37. <xsl:param>toc.section.depth=2
  38. <xsl:param>chunk.section.depth=3
  39. <dependency>autodoc
  40. <format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/libs/property_tree/doc/html
  41. ;
  42. ###############################################################################
  43. alias boostdoc
  44. : property_tree
  45. :
  46. : <dependency>autodoc
  47. : ;
  48. explicit boostdoc ;
  49. alias boostrelease ;
  50. explicit boostrelease ;