Jamfile.v2 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. # Boost.Container library documentation Jamfile ---------------------------------
  2. #
  3. # Copyright Ion Gaztanaga 2009-2013. Use, modification and
  4. # distribution is subject to the Boost Software License, Version
  5. # 1.0. (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 for updates, documentation, and revision history.
  9. import doxygen ;
  10. import quickbook ;
  11. using auto-index ;
  12. path-constant images_location : ../ ;
  13. path-constant here : . ;
  14. doxygen autodoc
  15. :
  16. [ glob ../../../boost/container/*.hpp ]
  17. [ glob ../../../boost/container/pmr/*.hpp ]
  18. :
  19. <doxygen:param>EXTRACT_ALL=NO
  20. <doxygen:param>HIDE_UNDOC_MEMBERS=YES
  21. <doxygen:param>EXTRACT_PRIVATE=NO
  22. <doxygen:param>ENABLE_PREPROCESSING=YES
  23. <doxygen:param>EXPAND_ONLY_PREDEF=YES
  24. <doxygen:param>MACRO_EXPANSION=YES
  25. <doxygen:param>"PREDEFINED=\"insert_const_ref_type= const T&\" \\
  26. \"BOOST_CONSTEXPR_OR_CONST=constexpr\" \\
  27. \"BOOST_CONTAINER_DOXYGEN_INVOKED\" \\
  28. \"BOOST_CONTAINER_IMPDEF(T)=implementation_defined\" \\
  29. \"BOOST_CONTAINER_SEEDOC(T)=see_documentation\" \\
  30. \"BOOST_NOEXCEPT_OR_NOTHROW=noexcept\" \\
  31. \"BOOST_NOEXCEPT_IF(T)=noexcept(T)\" \\
  32. \"BOOST_RV_REF(T)=T&&\" \\
  33. \"BOOST_RV_REF_BEG=\" \\
  34. \"BOOST_RV_REF_END=&&\" \\
  35. \"BOOST_RV_REF_BEG_IF_CXX11=\" \\
  36. \"BOOST_RV_REF_END_IF_CXX11=&&\" \\
  37. \"BOOST_COPY_ASSIGN_REF(T)=const T &\" \\
  38. \"BOOST_FWD_REF(a)=a &&\" \\
  39. \"BOOST_INTRUSIVE_OPTION_CONSTANT(OPTION_NAME, TYPE, VALUE, CONSTANT_NAME) = template<TYPE VALUE> struct OPTION_NAME{};\" \\
  40. \"BOOST_INTRUSIVE_OPTION_TYPE(OPTION_NAME, TYPE, TYPEDEF_EXPR, TYPEDEF_NAME) = template<class TYPE> struct OPTION_NAME{};\" \\
  41. \"BOOST_CONTAINER_DOC1ST(T1, T2)=T1\" \\
  42. \"BOOST_CONTAINER_DOCIGN(T) \"\\
  43. \"BOOST_CONTAINER_DOCONLY(T)=T\"\\
  44. \"BOOST_CONTAINER_SCOPEDALLOC_DUMMYTRUE=\"\\
  45. \"BOOST_CONTAINER_SCOPEDALLOC_ALLINNER=InnerAllocs...\"\\
  46. \"BOOST_CONTAINER_DECL=\"\\
  47. \"BOOST_CONTAINER_FORCEINLINE=inline\" \\
  48. "
  49. <xsl:param>"boost.doxygen.reftitle=Boost.Container Header Reference"
  50. ;
  51. xml container : container.qbk
  52. :
  53. <include>../../../tools/auto_index/include
  54. ;
  55. boostbook standalone
  56. :
  57. container
  58. :
  59. <format>html:<xsl:param>boost.root=../../../..
  60. <format>html:<xsl:param>boost.libraries=../../../../libs/libraries.htm
  61. <format>html:<xsl:param>img.src.path=../../../../doc/html/
  62. <format>xhtml:<xsl:param>img.src.path=../../../../doc/html/
  63. <xsl:param>generate.section.toc.level=3
  64. <xsl:param>chunk.first.sections=1
  65. <format>pdf:<xsl:param>img.src.path=$(images_location)/
  66. <dependency>autodoc
  67. <format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/doc/html
  68. # Build requirements go here:
  69. # <auto-index>on (or off) one turns on (or off) indexing:
  70. <auto-index>on
  71. # Turns on (or off) auto-index-verbose for diagnostic info.
  72. # This is highly recommended until you have got all the many details correct!
  73. <auto-index-verbose>on
  74. # Choose the indexing method (separately for html and PDF) - see manual.
  75. # Choose indexing method for PDFs:
  76. <format>pdf:<auto-index-internal>off
  77. # Choose indexing method for html:
  78. <format>html:<auto-index-internal>on
  79. <format>docbook:<auto-index-internal>on
  80. # Set the name of the script file to use (index.idx is popular):
  81. <auto-index-script>$(here)/index.idx
  82. # Commands in the script file should all use RELATIVE PATHS
  83. # otherwise the script will not be portable to other machines.
  84. # Relative paths are normally taken as relative to the location
  85. # of the script file, but we can add a prefix to all
  86. # those relative paths using the <auto-index-prefix> feature.
  87. # The path specified by <auto-index-prefix> may be either relative or
  88. # absolute, for example the following will get us up to the boost root
  89. # directory for most Boost libraries:
  90. <auto-index-prefix>"$(here)/../../.."
  91. <format>pdf:<xsl:param>admon.graphics.extension=".svg"
  92. ;
  93. install pdfinstall : standalone/<format>pdf : <install-type>PDF <location>. <name>container.pdf ;
  94. explicit pdfinstall ;
  95. ###############################################################################
  96. alias boostdoc
  97. : standalone/<format>docbook
  98. :
  99. :
  100. : ;
  101. explicit boostdoc ;
  102. alias boostrelease ;
  103. explicit boostrelease ;