19 lines
466 B
Plaintext
19 lines
466 B
Plaintext
import modules ;
|
|
|
|
BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ;
|
|
|
|
use-project /torrent : .. ;
|
|
use-project /boost : $(BOOST_ROOT) ;
|
|
|
|
project client_test
|
|
: requirements <threading>multi <library>/torrent
|
|
;
|
|
|
|
exe client_test : client_test.cpp /boost/program_options /boost/regex ;
|
|
exe simple_client : simple_client.cpp ;
|
|
exe dump_torrent : dump_torrent.cpp ;
|
|
exe make_torrent : make_torrent.cpp ;
|
|
|
|
#stage . : dump_torrent make_torrent simple_client client_test ;
|
|
|