# # Copyright (c) 2003-2014 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 ; } else if [ os.name ] = HPUX { lib ipv6 ; } project : requirements /boost/system//boost_system /boost/thread//boost_thread BOOST_ALL_NO_LIB=1 multi SOLARIS:socket SOLARIS:nsl NT:_WIN32_WINNT=0x0501 NT,gcc:ws2_32 NT,gcc:mswsock NT,gcc-cygwin:__USE_W32_SOCKETS HPUX,gcc:_XOPEN_SOURCE_EXTENDED HPUX:ipv6 ; exe chat_server : chat_server.cpp ; exe chat_client : chat_client.cpp ; exe posix_chat_client : posix_chat_client.cpp ;