Files
beast/example/Jamfile

37 lines
925 B
Plaintext
Raw Permalink Normal View History

#
# Copyright (c) 2013-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#
2017-07-20 13:40:34 -07:00
# Official repository: https://github.com/boostorg/beast
#
import testing ;
import-search /boost/config/checks ;
import config : requires ;
project /boost/beast/example
: requirements
[ requires
cxx11_constexpr
cxx11_decltype
cxx11_hdr_tuple
#cxx11_sfinae_expr # Every MSVC fails this
cxx11_template_aliases
cxx11_variadic_templates
]
2024-09-04 06:53:50 +00:00
<library>/boost/beast/test//lib-asio/<link>static
<boost.beast.separate-compilation>on:<library>/boost/beast/test//lib-beast/<link>static
<include>..
;
build-project advanced ;
build-project http ;
build-project websocket ;
2017-06-17 12:02:25 -07:00
build-project doc ;
# legacy
build-project echo-op ;