redistributables.qbk 1.2 KB

12345678910111213141516171819202122232425262728
  1. [/
  2. Copyright 2006-2007 John Maddock.
  3. Distributed under the Boost Software License, Version 1.0.
  4. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt).
  6. ]
  7. [section:redist Redistributables]
  8. If you are using Microsoft or Borland C++ and link to a dll version of the
  9. run time library, then you can choose to also link to a dll version of Boost.Regex
  10. by defining the symbol BOOST_REGEX_DYN_LINK when you compile your code.
  11. While these dll's are redistributable, there are no "standard" versions,
  12. so when installing on the users PC, you should place these in a
  13. directory private to your application, and not in the PC's directory path.
  14. Note that if you link to a static version of your run time library, then
  15. you will also link to a static version of Boost.Regex and no dll's will
  16. need to be distributed. The possible Boost.Regex dll and library names are
  17. computed according to the formula given in
  18. [@../../../../more/getting_started.html the getting started guide].
  19. Note: you can disable automatic library selection by defining the
  20. symbol BOOST_REGEX_NO_LIB when compiling, this is useful if you want to
  21. build Boost.Regex yourself in your IDE, or if you need to debug Boost.Regex.
  22. [endsect]