installation.qbk 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [/
  2. / Copyright (c) 2008 Eric Niebler
  3. /
  4. / Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. /]
  7. [/=======================]
  8. [section Installing Proto]
  9. [/=======================]
  10. [/====================]
  11. [heading Getting Proto]
  12. [/====================]
  13. You can get Proto
  14. by downloading Boost (Proto is in version 1.37 and later),
  15. or by accessing Boost's SVN repository on SourceForge.net. Just go to
  16. [@http://svn.boost.org/trac/boost/wiki/BoostSubversion]
  17. and follow the instructions there for anonymous SVN access.
  18. [/==========================]
  19. [heading Building with Proto]
  20. [/==========================]
  21. Proto is a header-only template library, which means you don't need to alter
  22. your build scripts or link to any separate lib file to use it. All you need
  23. to do is `#include <boost/proto/proto.hpp>`. Or, you might decide to just
  24. include the core of Proto (`#include <boost/proto/core.hpp>`) and whichever
  25. contexts and transforms you happen to use.
  26. [/===================]
  27. [heading Requirements]
  28. [/===================]
  29. Proto depends on Boost. You must use either Boost version 1.34.1 or higher,
  30. or the version in SVN trunk.
  31. [/==========================]
  32. [heading Supported Compilers]
  33. [/==========================]
  34. Currently, Boost.Proto is known to work on the following compilers:
  35. * Visual C++ 8 and higher
  36. * GNU C++ 3.4 and higher
  37. * Intel on Linux 8.1 and higher
  38. * Intel on Windows 9.1 and higher
  39. [note Please send any questions, comments and bug reports to eric <at> boostpro <dot> com.]
  40. [endsect]