Jamfile.v2 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. # Boost.Intrusive library documentation Jamfile
  2. #
  3. # Copyright Ion Gaztanaga 2006.
  4. # Distributed under the Boost Software License, Version 1.0.
  5. # (See accompanying file LICENSE_1_0.txt or copy at
  6. # http://www.boost.org/LICENSE_1_0.txt)
  7. #
  8. # See http://www.boost.org/libs/intrusive for documentation.
  9. using auto-index ;
  10. import doxygen ;
  11. import quickbook ;
  12. path-constant here : . ;
  13. doxygen autodoc
  14. :
  15. [ glob ../../../boost/intrusive/*.hpp ]
  16. :
  17. <doxygen:param>HIDE_UNDOC_MEMBERS=YES
  18. <doxygen:param>HIDE_UNDOC_MEMBERS=YES
  19. <doxygen:param>HIDE_UNDOC_CLASSES=YES
  20. <doxygen:param>EXTRACT_PRIVATE=NO
  21. <doxygen:param>ENABLE_PREPROCESSING=YES
  22. <doxygen:param>MACRO_EXPANSION=YES
  23. <doxygen:param>"PREDEFINED=\"BOOST_INTRUSIVE_DOXYGEN_INVOKED\" \\
  24. \"BOOST_INTRUSIVE_IMPDEF(T)=implementation_defined\" \\
  25. \"BOOST_INTRUSIVE_SEEDOC(T)=see_documentation\" \\
  26. \"BOOST_INTRUSIVE_DOC1ST(T1,T2)=T1\" \\
  27. \"BOOST_INTRUSIVE_DOCIGN(T)=\" \\
  28. \"BOOST_INTRUSIVE_I(T)=,\" \\
  29. \"BOOST_RV_REF(T)=T &&\" \\
  30. \"BOOST_RV_REF_BEG=\" \\
  31. \"BOOST_RV_REF_END=&&\" \\
  32. \"BOOST_INTRUSIVE_FORCEINLINE=inline\" \\
  33. \"list_impl=list\" \\
  34. \"slist_impl=slist\" \\
  35. \"bstree_impl=bstree\" \\
  36. \"bs_set_impl=bs_set\" \\
  37. \"bs_multiset_impl=bs_multiset\" \\
  38. \"rbtree_impl=rbtree\" \\
  39. \"set_impl=set\" \\
  40. \"multiset_impl=multiset\" \\
  41. \"unordered_set_impl=unordered_set\" \\
  42. \"unordered_multiset_impl=unordered_multiset\" \\
  43. \"hashtable_impl=hashtable\" \\
  44. \"splay_set_impl=splay_set\" \\
  45. \"splay_multiset_impl=splay_multiset\" \\
  46. \"splaytree_impl=splaytree\" \\
  47. \"sg_set_impl=sg_set\" \\
  48. \"sg_multiset_impl=sg_multiset\" \\
  49. \"sgtree_impl=sgtree\" \\
  50. \"avl_set_impl=avl_set\" \\
  51. \"avl_multiset_impl=avl_multiset\" \\
  52. \"avltree_impl=avltree\" \\
  53. \"treap_set_impl=treap_set\" \\
  54. \"treap_multiset_impl=treap_multiset\" \\
  55. \"treap_impl=treap\" \\
  56. \"BOOST_INTRUSIVE_OPTION_CONSTANT(OPTION_NAME, TYPE, VALUE, CONSTANT_NAME) = template<TYPE VALUE> struct OPTION_NAME{};\" \\
  57. \"BOOST_INTRUSIVE_OPTION_TYPE(OPTION_NAME, TYPE, TYPEDEF_EXPR, TYPEDEF_NAME) = template<class TYPE> struct OPTION_NAME{};\" "
  58. ;
  59. xml intrusive : intrusive.qbk
  60. :
  61. <include>../../../tools/auto_index/include
  62. ;
  63. boostbook standalone
  64. :
  65. intrusive
  66. :
  67. <format>html:<xsl:param>boost.root=../../../..
  68. <format>html:<xsl:param>boost.libraries=../../../../libs/libraries.htm
  69. <xsl:param>generate.section.toc.level=3
  70. <xsl:param>chunk.first.sections=1
  71. <dependency>autodoc
  72. # Build requirements go here:
  73. # <auto-index>on (or off) one turns on (or off) indexing:
  74. <auto-index>on
  75. # Turns on (or off) auto-index-verbose for diagnostic info.
  76. # This is highly recommended until you have got all the many details correct!
  77. <auto-index-verbose>on
  78. # Choose the indexing method (separately for html and PDF) - see manual.
  79. # Choose indexing method for PDFs:
  80. <format>pdf:<auto-index-internal>off
  81. # Choose indexing method for html:
  82. <format>html:<auto-index-internal>on
  83. <format>docbook:<auto-index-internal>on
  84. # Set the name of the script file to use (index.idx is popular):
  85. <auto-index-script>$(here)/index.idx
  86. # Commands in the script file should all use RELATIVE PATHS
  87. # otherwise the script will not be portable to other machines.
  88. # Relative paths are normally taken as relative to the location
  89. # of the script file, but we can add a prefix to all
  90. # those relative paths using the <auto-index-prefix> feature.
  91. # The path specified by <auto-index-prefix> may be either relative or
  92. # absolute, for example the following will get us up to the boost root
  93. # directory for most Boost libraries:
  94. <auto-index-prefix>"$(here)/../../.."
  95. ;
  96. install pdfinstall : standalone/<format>pdf : <name>intrusive.pdf <location>. <install-type>PDF <format>pdf ;
  97. explicit pdfinstall ;
  98. ###############################################################################
  99. alias boostdoc
  100. : standalone/<format>docbook
  101. :
  102. :
  103. : ;
  104. explicit boostdoc ;
  105. alias boostrelease ;
  106. explicit boostrelease ;