Jamfile.v2 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # Boost string_algo library documentation Jamfile ---------------------------------
  2. #
  3. # Copyright Pavol Droba 2002-2003. 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 toolset ;
  10. toolset.using doxygen ;
  11. boostbook string_algo : string_algo.xml autodoc
  12. :
  13. <xsl:param>boost.root=../../../../..
  14. <format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/doc/html
  15. ;
  16. doxygen autodoc
  17. :
  18. [ glob ../../../../boost/algorithm/string.hpp ]
  19. [ glob ../../../../boost/algorithm/string_regex.hpp ]
  20. [ glob ../../../../boost/algorithm/string/classification.hpp ]
  21. [ glob ../../../../boost/algorithm/string/iterator_range.hpp ]
  22. [ glob ../../../../boost/algorithm/string/sequence_traits.hpp ]
  23. [ glob ../../../../boost/algorithm/string/std_containers_traits.hpp ]
  24. [ glob ../../../../boost/algorithm/string/concept.hpp ]
  25. [ glob ../../../../boost/algorithm/string/compare.hpp ]
  26. [ glob ../../../../boost/algorithm/string/constants.hpp ]
  27. [ glob ../../../../boost/algorithm/string/case_conv.hpp ]
  28. [ glob ../../../../boost/algorithm/string/find.hpp ]
  29. [ glob ../../../../boost/algorithm/string/finder.hpp ]
  30. [ glob ../../../../boost/algorithm/string/find_iterator.hpp ]
  31. [ glob ../../../../boost/algorithm/string/trim.hpp ]
  32. [ glob ../../../../boost/algorithm/string/predicate.hpp ]
  33. [ glob ../../../../boost/algorithm/string/split.hpp ]
  34. [ glob ../../../../boost/algorithm/string/iter_find.hpp ]
  35. [ glob ../../../../boost/algorithm/string/erase.hpp ]
  36. [ glob ../../../../boost/algorithm/string/join.hpp ]
  37. [ glob ../../../../boost/algorithm/string/replace.hpp ]
  38. [ glob ../../../../boost/algorithm/string/find_format.hpp ]
  39. [ glob ../../../../boost/algorithm/string/formatter.hpp ]
  40. [ glob ../../../../boost/algorithm/string/regex.hpp ]
  41. [ glob ../../../../boost/algorithm/string/regex_find_format.hpp ]
  42. [ glob ../../../../boost/algorithm/string/trim_all.hpp ]
  43. :
  44. <doxygen:param>HIDE_UNDOC_MEMBERS=YES
  45. <doxygen:param>EXTRACT_PRIVATE=NO
  46. <doxygen:param>ENABLE_PREPROCESSING=YES
  47. <doxygen:param>MACRO_EXPANSION=YES
  48. <doxygen:param>EXPAND_ONLY_PREDEF=YES
  49. <doxygen:param>SEARCH_INCLUDES=YES
  50. <doxygen:param>PREDEFINED="BOOST_STRING_TYPENAME=typename \"BOOST_STATIC_CONSTANT(type,var)=static const type var;\""
  51. ;