Check compiler feature in Jamfile

This commit is contained in:
Vinnie Falco
2017-10-16 07:23:33 -07:00
parent a30d30e379
commit e832baf93f
2 changed files with 9 additions and 0 deletions

View File

@ -2,6 +2,7 @@ Version 123:
* Use unit-test subtree
* Fix spurious race in websocket close test
* Check compiler feature in Jamfile
--------------------------------------------------------------------------------

View File

@ -7,8 +7,16 @@
# Official repository: https://github.com/boostorg/beast
#
import testing ;
import ../../config/checks/config : requires ;
project /boost/beast/test
: requirements
[ requires
cxx11_variadic_templates
cxx11_template_aliases
cxx11_decltype
cxx11_hdr_tuple ]
<include>./extern
;