]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/beast/test/Jamfile
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / beast / test / Jamfile
1 #
2 # Copyright (c) 2016-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
10 import testing ;
11 import ../../config/checks/config : requires ;
12
13 project /boost/beast/test
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 <include>./extern
24 ;
25
26 path-constant ZLIB_SOURCES :
27 extern/zlib-1.2.11/adler32.c
28 extern/zlib-1.2.11/compress.c
29 extern/zlib-1.2.11/crc32.c
30 extern/zlib-1.2.11/deflate.c
31 extern/zlib-1.2.11/infback.c
32 extern/zlib-1.2.11/inffast.c
33 extern/zlib-1.2.11/inflate.c
34 extern/zlib-1.2.11/inftrees.c
35 extern/zlib-1.2.11/trees.c
36 extern/zlib-1.2.11/uncompr.c
37 extern/zlib-1.2.11/zutil.c
38 ;
39
40 alias run-tests :
41 beast//run-tests
42 bench//run-tests
43 doc//run-tests
44 example//run-tests
45 ;
46
47 alias fat-tests :
48 beast//fat-tests
49 doc//fat-tests
50 example//fat-tests
51 ;
52
53 explicit fat-tests ;