# # Copyright (c) 2003-2007 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) # import os ; if [ os.name ] = SOLARIS { lib socket ; lib nsl ; } else if [ os.name ] = NT { lib ws2_32 ; lib mswsock ; } project : requirements /boost/system//boost_system /boost/thread//boost_thread BOOST_ALL_NO_LIB=1 multi SOLARIS:socket SOLARIS:nsl NT,gcc:ws2_32 NT,gcc:mswsock ; exe async_tcp_echo_server : async_tcp_echo_server.cpp ; exe async_udp_echo_server : async_udp_echo_server.cpp ; exe blocking_tcp_echo_client : blocking_tcp_echo_client.cpp ; exe blocking_tcp_echo_server : blocking_tcp_echo_server.cpp ; exe blocking_udp_echo_client : blocking_udp_echo_client.cpp ; exe blocking_udp_echo_server : blocking_udp_echo_server.cpp ;