# # Copyright (c) 2013-2017 Vinnie Falco (vinnie dot falco at gmail 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) # import os ; if [ os.name ] = SOLARIS { lib socket ; lib nsl ; } else if [ os.name ] = NT { lib ws2_32 ; lib mswsock ; } else if [ os.name ] = HPUX { lib ipv6 ; } else if [ os.name ] = HAIKU { lib network ; } if [ os.name ] = NT { lib ssl : : ssleay32 ; lib crypto : : libeay32 ; } else { lib ssl ; lib crypto ; } project : requirements ssl crypto ; exe http-ssl-example : http_ssl_example.cpp ; exe websocket-ssl-example : websocket_ssl_example.cpp ;