]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/beast/test/beast/ssl/Jamfile
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / beast / test / beast / ssl / Jamfile
1 #
2 # Copyright (c) 2016-2019 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 local SOURCES =
11 ssl_stream.cpp
12 ;
13
14 local RUN_TESTS ;
15
16 for local f in $(SOURCES)
17 {
18 RUN_TESTS += [ run $(f)
19 /boost/beast//lib-asio-ssl
20 /boost/beast/test//lib-test
21 ] ;
22 }
23
24 alias run-tests : $(RUN_TESTS) ;
25
26 exe fat-tests
27 :
28 $(SOURCES)
29 /boost/beast//lib-asio-ssl
30 /boost/beast/test//lib-test
31 ;
32
33 explicit fat-tests ;
34
35 run $(SOURCES)
36 /boost/beast//lib-asio-ssl
37 /boost/beast/test//lib-test
38 : : : : run-fat-tests ;
39
40 explicit run-fat-tests ;