Jamfile 861 B

1234567891011121314151617181920212223242526272829303132
  1. #
  2. # Copyright (c) 2013-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
  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. # Official repository: https://github.com/boostorg/beast
  8. #
  9. import testing ;
  10. import ../../config/checks/config : requires ;
  11. project /boost/beast/example
  12. : requirements
  13. [ requires
  14. cxx11_constexpr
  15. cxx11_decltype
  16. cxx11_hdr_tuple
  17. #cxx11_sfinae_expr # Every MSVC fails this
  18. cxx11_template_aliases
  19. cxx11_variadic_templates
  20. ]
  21. <library>/boost/beast//lib-asio/<link>static
  22. <boost.beast.separate-compilation>on:<library>/boost/beast//lib-beast/<link>static
  23. ;
  24. build-project advanced ;
  25. build-project http ;
  26. build-project websocket ;
  27. # legacy
  28. build-project echo-op ;