Fix up Jamfiles so that they work with MSVC.
This commit is contained in:
parent
02b41da000
commit
e7b1bbfeab
@ -3,7 +3,8 @@ subproject libs/asio/example/chat ;
|
||||
project boost : $(BOOST_ROOT) ;
|
||||
|
||||
exe chat_client
|
||||
: <lib>@boost/libs/thread/build/boost_thread
|
||||
: <lib>@boost/libs/date_time/build/boost_date_time
|
||||
<lib>@boost/libs/thread/build/boost_thread
|
||||
chat_client.cpp
|
||||
: <include>$(BOOST_ROOT)
|
||||
<include>../../../..
|
||||
@ -11,7 +12,8 @@ exe chat_client
|
||||
;
|
||||
|
||||
exe chat_server
|
||||
: <lib>@boost/libs/thread/build/boost_thread
|
||||
: <lib>@boost/libs/date_time/build/boost_date_time
|
||||
<lib>@boost/libs/thread/build/boost_thread
|
||||
chat_server.cpp
|
||||
: <include>$(BOOST_ROOT)
|
||||
<include>../../../..
|
||||
|
@ -3,7 +3,8 @@ subproject libs/asio/example/echo ;
|
||||
project boost : $(BOOST_ROOT) ;
|
||||
|
||||
template asio_echo_example
|
||||
: <lib>@boost/libs/thread/build/boost_thread
|
||||
: <lib>@boost/libs/date_time/build/boost_date_time
|
||||
<lib>@boost/libs/thread/build/boost_thread
|
||||
: <include>$(BOOST_ROOT)
|
||||
<include>../../../..
|
||||
<threading>multi
|
||||
|
@ -3,8 +3,8 @@ subproject libs/asio/example/http/server ;
|
||||
project boost : $(BOOST_ROOT) ;
|
||||
|
||||
exe http_server
|
||||
: <lib>@boost/libs/thread/build/boost_thread
|
||||
<lib>@boost/libs/date_time/build/boost_date_time
|
||||
: <lib>@boost/libs/date_time/build/boost_date_time
|
||||
<lib>@boost/libs/thread/build/boost_thread
|
||||
connection.cpp
|
||||
connection_manager.cpp
|
||||
mime_types.cpp
|
||||
|
@ -1,7 +1,10 @@
|
||||
subproject libs/asio/example/iostreams ;
|
||||
|
||||
project boost : $(BOOST_ROOT) ;
|
||||
|
||||
exe daytime_client
|
||||
: daytime_client.cpp
|
||||
: <lib>@boost/libs/date_time/build/boost_date_time
|
||||
daytime_client.cpp
|
||||
: <include>$(BOOST_ROOT)
|
||||
<include>../../../..
|
||||
<threading>multi
|
||||
|
@ -1,14 +1,18 @@
|
||||
subproject libs/asio/example/multicast ;
|
||||
|
||||
project boost : $(BOOST_ROOT) ;
|
||||
|
||||
exe receiver
|
||||
: receiver.cpp
|
||||
: <lib>@boost/libs/date_time/build/boost_date_time
|
||||
receiver.cpp
|
||||
: <include>$(BOOST_ROOT)
|
||||
<include>../../../..
|
||||
<threading>multi
|
||||
;
|
||||
|
||||
exe sender
|
||||
: sender.cpp
|
||||
: <lib>@boost/libs/date_time/build/boost_date_time
|
||||
sender.cpp
|
||||
: <include>$(BOOST_ROOT)
|
||||
<include>../../../..
|
||||
<threading>multi
|
||||
|
@ -3,8 +3,8 @@ subproject libs/asio/example/services ;
|
||||
project boost : $(BOOST_ROOT) ;
|
||||
|
||||
exe daytime_client
|
||||
: <lib>@boost/libs/thread/build/boost_thread
|
||||
<lib>@boost/libs/date_time/build/boost_date_time
|
||||
: <lib>@boost/libs/date_time/build/boost_date_time
|
||||
<lib>@boost/libs/thread/build/boost_thread
|
||||
daytime_client.cpp
|
||||
: <include>$(BOOST_ROOT)
|
||||
<include>../../../..
|
||||
|
@ -1,7 +1,8 @@
|
||||
subproject libs/asio/example/ssl ;
|
||||
|
||||
exe client
|
||||
: client.cpp
|
||||
: <lib>@boost/libs/date_time/build/boost_date_time
|
||||
client.cpp
|
||||
: <include>$(BOOST_ROOT)
|
||||
<include>../../../..
|
||||
<threading>multi
|
||||
@ -10,7 +11,8 @@ exe client
|
||||
;
|
||||
|
||||
exe server
|
||||
: server.cpp
|
||||
: <lib>@boost/libs/date_time/build/boost_date_time
|
||||
server.cpp
|
||||
: <include>$(BOOST_ROOT)
|
||||
<include>../../../..
|
||||
<threading>multi
|
||||
|
@ -3,7 +3,8 @@ subproject libs/asio/example/timeouts ;
|
||||
project boost : $(BOOST_ROOT) ;
|
||||
|
||||
template asio_timeouts_example
|
||||
: <lib>@boost/libs/thread/build/boost_thread
|
||||
: <lib>@boost/libs/date_time/build/boost_date_time
|
||||
<lib>@boost/libs/thread/build/boost_thread
|
||||
: <include>$(BOOST_ROOT)
|
||||
<include>../../../..
|
||||
<threading>multi
|
||||
|
@ -3,7 +3,8 @@ subproject libs/asio/example/tutorial ;
|
||||
project boost : $(BOOST_ROOT) ;
|
||||
|
||||
template asio_tutorial
|
||||
: <lib>@boost/libs/thread/build/boost_thread
|
||||
: <lib>@boost/libs/date_time/build/boost_date_time
|
||||
<lib>@boost/libs/thread/build/boost_thread
|
||||
: <include>$(BOOST_ROOT)
|
||||
<include>../../../..
|
||||
<threading>multi
|
||||
|
@ -5,44 +5,44 @@ import testing ;
|
||||
|
||||
project boost : $(BOOST_ROOT) ;
|
||||
|
||||
run basic_datagram_socket_test.cpp : : : <include>../../.. ;
|
||||
run basic_deadline_timer_test.cpp : : : <include>../../.. ;
|
||||
run basic_demuxer_test.cpp : : : <include>../../.. ;
|
||||
run basic_locking_dispatcher_test.cpp : : : <include>../../.. ;
|
||||
run basic_socket_acceptor_test.cpp : : : <include>../../.. ;
|
||||
run basic_stream_socket_test.cpp : : : <include>../../.. ;
|
||||
run buffer_test.cpp : : : <include>../../.. ;
|
||||
run buffered_read_stream_test.cpp : : : <include>../../.. ;
|
||||
run buffered_stream_test.cpp : : : <include>../../.. ;
|
||||
run buffered_write_stream_test.cpp : : : <include>../../.. ;
|
||||
run completion_condition_test.cpp : : : <include>../../.. ;
|
||||
run datagram_socket_service_test.cpp : : : <include>../../.. ;
|
||||
run datagram_socket_test.cpp : : : <include>../../.. ;
|
||||
run deadline_timer_service_test.cpp : : : <include>../../.. ;
|
||||
run deadline_timer_test.cpp : : : <include>../../.. ;
|
||||
run demuxer_service_test.cpp : : : <include>../../.. ;
|
||||
run demuxer_test.cpp <lib>@boost/libs/thread/build/boost_thread : : : <include>../../.. ;
|
||||
run error_handler_test.cpp : : : <include>../../.. ;
|
||||
run error_test.cpp : : : <include>../../.. ;
|
||||
run ipv4/address_test.cpp : : : <include>../../.. ;
|
||||
run ipv4/basic_host_resolver_test.cpp : : : <include>../../.. ;
|
||||
run ipv4/host_resolver_service_test.cpp : : : <include>../../.. ;
|
||||
run ipv4/host_resolver_test.cpp : : : <include>../../.. ;
|
||||
run ipv4/host_test.cpp : : : <include>../../.. ;
|
||||
run ipv4/multicast_test.cpp : : : <include>../../.. ;
|
||||
run ipv4/tcp_test.cpp : : : <include>../../.. ;
|
||||
run ipv4/udp_test.cpp : : : <include>../../.. ;
|
||||
run is_read_buffered_test.cpp : : : <include>../../.. ;
|
||||
run is_write_buffered_test.cpp : : : <include>../../.. ;
|
||||
run locking_dispatcher_service_test.cpp : : : <include>../../.. ;
|
||||
run locking_dispatcher_test.cpp <lib>@boost/libs/thread/build/boost_thread : : : <include>../../.. ;
|
||||
run placeholders_test.cpp : : : <include>../../.. ;
|
||||
run read_test.cpp : : : <include>../../.. ;
|
||||
run service_factory_test.cpp : : : <include>../../.. ;
|
||||
run socket_acceptor_service_test.cpp : : : <include>../../.. ;
|
||||
run socket_acceptor_test.cpp : : : <include>../../.. ;
|
||||
run socket_base_test.cpp : : : <include>../../.. ;
|
||||
run stream_socket_service_test.cpp : : : <include>../../.. ;
|
||||
run stream_socket_test.cpp : : : <include>../../.. ;
|
||||
run time_traits_test.cpp : : : <include>../../.. ;
|
||||
run write_test.cpp : : : <include>../../.. ;
|
||||
run basic_datagram_socket_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run basic_deadline_timer_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run basic_demuxer_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run basic_locking_dispatcher_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run basic_socket_acceptor_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run basic_stream_socket_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run buffer_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run buffered_read_stream_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run buffered_stream_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run buffered_write_stream_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run completion_condition_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run datagram_socket_service_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run datagram_socket_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run deadline_timer_service_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run deadline_timer_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run demuxer_service_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run demuxer_test.cpp <lib>@boost/libs/date_time/build/boost_date_time <lib>@boost/libs/thread/build/boost_thread : : : <include>../../.. ;
|
||||
run error_handler_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run error_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run ipv4/address_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run ipv4/basic_host_resolver_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run ipv4/host_resolver_service_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run ipv4/host_resolver_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run ipv4/host_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run ipv4/multicast_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run ipv4/tcp_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run ipv4/udp_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run is_read_buffered_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run is_write_buffered_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run locking_dispatcher_service_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run locking_dispatcher_test.cpp <lib>@boost/libs/date_time/build/boost_date_time <lib>@boost/libs/thread/build/boost_thread : : : <include>../../.. ;
|
||||
run placeholders_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run read_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run service_factory_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run socket_acceptor_service_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run socket_acceptor_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run socket_base_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run stream_socket_service_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run stream_socket_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run time_traits_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
run write_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../.. ;
|
||||
|
@ -3,10 +3,12 @@ subproject libs/asio/test/ssl ;
|
||||
# bring in the rules for testing
|
||||
import testing ;
|
||||
|
||||
run basic_context_test.cpp : : : <include>../../../.. ;
|
||||
run context_base_test.cpp : : : <include>../../../.. ;
|
||||
run context_service_test.cpp : : : <include>../../../.. ;
|
||||
run context_test.cpp : : : <include>../../../.. ;
|
||||
run stream_base_test.cpp : : : <include>../../../.. ;
|
||||
run stream_service_test.cpp : : : <include>../../../.. ;
|
||||
run stream_test.cpp : : : <include>../../../.. ;
|
||||
project boost : $(BOOST_ROOT) ;
|
||||
|
||||
run basic_context_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../../.. ;
|
||||
run context_base_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../../.. ;
|
||||
run context_service_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../../.. ;
|
||||
run context_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../../.. ;
|
||||
run stream_base_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../../.. ;
|
||||
run stream_service_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../../.. ;
|
||||
run stream_test.cpp <lib>@boost/libs/date_time/build/boost_date_time : : : <include>../../../.. ;
|
||||
|
Loading…
Reference in New Issue
Block a user