Jamfile.v2 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # Copyright (C) 2008-2018 Lorenzo Caminiti
  2. # Distributed under the Boost Software License, Version 1.0 (see accompanying
  3. # file LICENSE_1_0.txt or a copy at http://www.boost.org/LICENSE_1_0.txt).
  4. # See: http://www.boost.org/doc/libs/release/libs/contract/doc/html/index.html
  5. using quickbook ;
  6. using boostbook ;
  7. using doxygen ;
  8. path-constant images_location : html ;
  9. path-constant here : . ;
  10. doxygen reference
  11. :
  12. [ glob
  13. ../include/boost/contract.hpp
  14. ../include/boost/contract_macro.hpp
  15. ../include/boost/contract/assert.hpp
  16. ../include/boost/contract/base_types.hpp
  17. ../include/boost/contract/call_if.hpp
  18. ../include/boost/contract/check.hpp
  19. ../include/boost/contract/constructor.hpp
  20. ../include/boost/contract/destructor.hpp
  21. ../include/boost/contract/function.hpp
  22. ../include/boost/contract/old.hpp
  23. ../include/boost/contract/override.hpp
  24. ../include/boost/contract/public_function.hpp
  25. ../include/boost/contract/core/access.hpp
  26. ../include/boost/contract/core/check_macro.hpp
  27. ../include/boost/contract/core/config.hpp
  28. ../include/boost/contract/core/constructor_precondition.hpp
  29. ../include/boost/contract/core/exception.hpp
  30. ../include/boost/contract/core/specify.hpp
  31. ../include/boost/contract/core/virtual.hpp
  32. ]
  33. :
  34. <reftitle>"Reference"
  35. # Quickbook's Doxygen does not show destructor exception specs.
  36. <doxygen:param>PREDEFINED="BOOST_CONTRACT_DETAIL_DOXYGEN BOOST_PP_VARIADICS"
  37. <doxygen:param>MACRO_EXPANSION=YES
  38. <doxygen:param>INCLUDE_PATH="../include"
  39. <doxygen:param>QUIET=YES
  40. <doxygen:param>JAVADOC_AUTOBRIEF=YES
  41. <doxygen:param>WARN_IF_UNDOCUMENTED=NO
  42. <doxygen:param>EXCLUDE_SYMBOLS=std
  43. # Following does not work for XML output... use @cond and/or
  44. # #ifdef BOOST_CONTRACT_DETAIL_DOXYGEN in code instead.
  45. <doxygen:param>EXTRACT_PRIVATE=NO
  46. <doxygen:param>HIDE_UNDOC_MEMBERS=YES
  47. <doxygen:param>HIDE_UNDOC_CLASSES=YES
  48. <doxygen:param>SHORT_NAMES=NO
  49. <doxygen:param>ALIASES=" RefSect{2}=\"\\xmlonly<link linkend='boost_contract.\\1'>\\2</link>\\endxmlonly\" RefClass{1}=\"\\xmlonly<computeroutput><classname alt='\\1'>\\1</classname></computeroutput>\\endxmlonly\" RefFunc{1}=\"\\xmlonly<computeroutput><functionname alt='\\1'>\\1</functionname></computeroutput>\\endxmlonly\" RefMacro{1}=\"\\xmlonly<computeroutput><macroname alt='\\1'>\\1</macroname></computeroutput>\\endxmlonly\" RefEnum{1}=\"\\xmlonly<computeroutput><enumname alt='\\1'>\\1</enumname></computeroutput>\\endxmlonly\" "
  50. ;
  51. xml contract : main.qbk : <dependency>reference ;
  52. boostbook boostrelease : contract
  53. :
  54. <location>html
  55. <xsl:param>boost.defaults=Boost
  56. <xsl:param>boost.root=../../../..
  57. <xsl:param>toc.max.depth=1
  58. <format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/libs/contract/doc/html
  59. <format>pdf:<xsl:param>admon.graphics.extension=".svg"
  60. <format>pdf:<xsl:param>img.src.path=$(images_location)/
  61. <format>pdf:<xsl:param>draft.mode="no"
  62. ;
  63. install pdfinstall : doc/<format>pdf :
  64. <location>. <install-type>PDF <name>local_function.pdf ;
  65. explicit pdfinstall ;