Jamfile.v2 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. # Boost.Interprocess library documentation Jamfile ---------------------------------
  2. #
  3. # Copyright Ion Gaztanaga 2005-2009. 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. using auto-index ;
  10. import doxygen ;
  11. import quickbook ;
  12. path-constant here : . ;
  13. doxygen autodoc
  14. :
  15. [ glob ../../../boost/interprocess/*.hpp ]
  16. [ glob ../../../boost/interprocess/allocators/*.hpp ]
  17. [ glob ../../../boost/interprocess/containers/*.hpp ]
  18. [ glob ../../../boost/interprocess/indexes/*.hpp ]
  19. [ glob ../../../boost/interprocess/ipc/*.hpp ]
  20. [ glob ../../../boost/interprocess/mem_algo/*.hpp ]
  21. [ glob ../../../boost/interprocess/smart_ptr/*.hpp ]
  22. [ glob ../../../boost/interprocess/streams/*.hpp ]
  23. [ glob ../../../boost/interprocess/sync/*.hpp ]
  24. :
  25. <doxygen:param>EXTRACT_ALL=NO
  26. <doxygen:param>HIDE_UNDOC_MEMBERS=YES
  27. <doxygen:param>EXTRACT_PRIVATE=NO
  28. <doxygen:param>ENABLE_PREPROCESSING=YES
  29. <doxygen:param>EXPAND_ONLY_PREDEF=YES
  30. <doxygen:param>MACRO_EXPANSION=YES
  31. <doxygen:param>"PREDEFINED=\"BOOST_INTERPROCESS_DOXYGEN_INVOKED\" \\
  32. \"BOOST_NOEXCEPT_IF(T)=noexcept(T)\" \\
  33. \"BOOST_NOEXCEPT_OR_NOTHROW=noexcept\" \\
  34. \"BOOST_INTERPROCESS_IMPDEF(T)=implementation_defined\" \\
  35. \"BOOST_INTERPROCESS_SEEDOC(T)=see_documentation\" \\
  36. \"BOOST_INTERPROCESS_DOC1ST(T1,T2)=T1\" \\
  37. \"BOOST_INTERPROCESS_DOCIGN(T)=\" \\
  38. \"BOOST_INTERPROCESS_I(T)=,\" \\
  39. \"BOOST_INTERPROCESS_ENABLE_MOVE_EMULATION(a)= \" \\
  40. \"BOOST_RV_REF(T)=T&&\" \\
  41. \"BOOST_RV_REF_BEG=\" \\
  42. \"BOOST_RV_REF_END=&&\" \\
  43. \"BOOST_FWD_REF(T)=T&&\" \\
  44. \"BOOST_INTERPROCESS_FORCEINLINE=inline\" \\
  45. "
  46. <xsl:param>"boost.doxygen.reftitle=Boost.Interprocess Header Reference"
  47. ;
  48. xml interprocess : interprocess.qbk
  49. :
  50. <include>../../../tools/auto_index/include
  51. ;
  52. boostbook standalone
  53. :
  54. interprocess
  55. :
  56. <format>html:<xsl:param>boost.root=../../../..
  57. <format>html:<xsl:param>boost.libraries=../../../../libs/libraries.htm
  58. <xsl:param>generate.section.toc.level=3
  59. <xsl:param>chunk.first.sections=1
  60. <dependency>autodoc
  61. <format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/doc/html
  62. # Build requirements go here:
  63. # <auto-index>on (or off) one turns on (or off) indexing:
  64. <auto-index>on
  65. # Turns on (or off) auto-index-verbose for diagnostic info.
  66. # This is highly recommended until you have got all the many details correct!
  67. <auto-index-verbose>on
  68. # Choose the indexing method (separately for html and PDF) - see manual.
  69. # Choose indexing method for PDFs:
  70. <format>pdf:<auto-index-internal>off
  71. # Choose indexing method for html:
  72. <format>html:<auto-index-internal>on
  73. <format>docbook:<auto-index-internal>on
  74. # Set the name of the script file to use (index.idx is popular):
  75. <auto-index-script>$(here)/index.idx
  76. # Commands in the script file should all use RELATIVE PATHS
  77. # otherwise the script will not be portable to other machines.
  78. # Relative paths are normally taken as relative to the location
  79. # of the script file, but we can add a prefix to all
  80. # those relative paths using the <auto-index-prefix> feature.
  81. # The path specified by <auto-index-prefix> may be either relative or
  82. # absolute, for example the following will get us up to the boost root
  83. # directory for most Boost libraries:
  84. <auto-index-prefix>"$(here)/../../.."
  85. ;
  86. install pdfinstall : standalone/<format>pdf : <location>. <name>interprocess.pdf <install-type>PDF <format>pdf ;
  87. explicit pdfinstall ;
  88. ###############################################################################
  89. alias boostdoc
  90. : standalone/<format>docbook
  91. :
  92. :
  93. : ;
  94. explicit boostdoc ;
  95. alias boostrelease ;
  96. explicit boostrelease ;