2
0
mirror of https://github.com/boostorg/asio.git synced 2026-02-24 02:12:12 +00:00
Files
asio/test/ssl/Jamfile
Christopher Kohlhoff b60e92b13e Initial merge of Networking TS compatibility.
Merged from chriskohlhoff/asio master branch as of commit
4a4d28b0d24c53236e229bd1b5f378c9964b1ebb.
2017-10-23 21:48:43 +11:00

44 lines
1019 B
Plaintext

#
# Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff 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)
#
subproject libs/asio/test/ssl ;
# bring in the rules for testing
import testing ;
project boost : $(BOOST_ROOT) ;
if $(UNIX)
{
switch $(JAMUNAME)
{
case SunOS* :
{
SOCKET_LIBS = <find-library>socket <find-library>nsl ;
}
}
}
template unit_test
: <lib>@boost/libs/system/build/boost_system
: <include>../../../..
<define>BOOST_ALL_NO_LIB=1
<threading>multi
<find-library>ssl
<find-library>crypto
<mingw><*><find-library>ws2_32
<mingw><*><find-library>mswsock
$(SOCKET_LIBS)
;
run context_base.cpp <template>unit_test ;
run context.cpp <template>unit_test ;
run error.cpp <template>unit_test ;
run rfc2818_verification.cpp <template>unit_test ;
run stream_base.cpp <template>unit_test ;
run stream.cpp <template>unit_test ;