Files
libtorrent/examples/Jamfile

19 lines
466 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 : .. ;
use-project /boost : $(BOOST_ROOT) ;
2004-02-21 11:52:21 +00:00
project client_test
2005-02-24 11:31:40 +00:00
: requirements <threading>multi <library>/torrent
2004-10-31 23:16:08 +00:00
;
2004-02-21 11:52:21 +00:00
exe client_test : client_test.cpp /boost/program_options /boost/regex ;
2005-01-11 02:13:07 +00:00
exe simple_client : simple_client.cpp ;
exe dump_torrent : dump_torrent.cpp ;
exe make_torrent : make_torrent.cpp ;
2004-10-10 00:42:48 +00:00
#stage . : dump_torrent make_torrent simple_client client_test ;
2004-02-21 11:52:21 +00:00