]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/asio/test/ssl/Jamfile
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / asio / test / ssl / Jamfile
CommitLineData
7c673cae
FG
1#
2# Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff 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
8subproject libs/asio/test/ssl ;
9
10# bring in the rules for testing
11import testing ;
12
13project boost : $(BOOST_ROOT) ;
14
15if $(UNIX)
16{
17 switch $(JAMUNAME)
18 {
19 case SunOS* :
20 {
21 SOCKET_LIBS = <find-library>socket <find-library>nsl ;
22 }
23 }
24}
25
26template unit_test
27 : <lib>@boost/libs/system/build/boost_system
28 : <include>../../../..
29 <define>BOOST_ALL_NO_LIB=1
30 <threading>multi
31 <find-library>ssl
32 <find-library>crypto
33 <mingw><*><find-library>ws2_32
34 <mingw><*><find-library>mswsock
35 $(SOCKET_LIBS)
36 ;
37
38run basic_context.cpp <template>unit_test ;
39run context_base.cpp <template>unit_test ;
40run context_service.cpp <template>unit_test ;
41run context.cpp <template>unit_test ;
42run rfc2818_verification.cpp <template>unit_test ;
43run stream_base.cpp <template>unit_test ;
44run stream_service.cpp <template>unit_test ;
45run stream.cpp <template>unit_test ;