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 10import testing ; 11import ../../config/checks/config : requires ; 12 13project /boost/beast/example 14 : requirements 15 [ requires 16 cxx11_constexpr 17 cxx11_decltype 18 cxx11_hdr_tuple 19 #cxx11_sfinae_expr # Every MSVC fails this 20 cxx11_template_aliases 21 cxx11_variadic_templates 22 ] 23 <library>/boost/beast//lib-asio/<link>static 24 <boost.beast.separate-compilation>on:<library>/boost/beast//lib-beast/<link>static 25 ; 26 27build-project advanced ; 28build-project http ; 29build-project websocket ; 30 31# legacy 32build-project echo-op ; 33