Files
libtorrent/examples/Jamfile

34 lines
785 B
Plaintext
Raw Normal View History

import modules ;
BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ;
2004-04-17 12:29:35 +00:00
use-project /torrent : .. ;
if $(BOOST_ROOT)
{
use-project /boost : $(BOOST_ROOT) ;
}
project client_test
: requirements
<threading>multi <library>/torrent//torrent
: default-build
<link>static
2004-10-31 23:16:08 +00:00
;
2004-02-21 11:52:21 +00:00
exe client_test : client_test.cpp print.cpp torrent_view.cpp session_view.cpp ;
2005-01-11 02:13:07 +00:00
exe simple_client : simple_client.cpp ;
2014-07-06 19:18:00 +00:00
exe stats_counters : stats_counters.cpp ;
2005-01-11 02:13:07 +00:00
exe dump_torrent : dump_torrent.cpp ;
exe make_torrent : make_torrent.cpp ;
exe connection_tester : connection_tester.cpp ;
exe upnp_test : upnp_test.cpp ;
2004-10-10 00:42:48 +00:00
2014-07-06 19:18:00 +00:00
explicit stage_client_test ;
explicit stage_connection_tester ;
install stage_client_test : client_test : <location>. ;
install stage_connection_tester : connection_tester : <location>. ;