fixed typo
[libtorrent.git] / examples / Jamfile
blob339569c97e74f5ad2929728ba232f18f0af62f2f
1 import modules ;
3 BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ;
5 use-project /torrent : .. ;
7 if $(BOOST_ROOT)
9         use-project /boost : $(BOOST_ROOT) ;
12 lib program-options : : <name>boost_program_options ;
13 lib regex : : <name>boost_regex ;
15 project client_test
16    : requirements
17         <threading>multi <library>/torrent//torrent
18         : default-build
19         <link>static
20    ;  
22 exe client_test : client_test.cpp
23         : <library>/boost/program_options
24         <library>/boost/regex
25         ;
27 exe simple_client : simple_client.cpp ;
28 exe dump_torrent : dump_torrent.cpp ;
29 exe make_torrent : make_torrent.cpp ;
30 exe enum_if : enum_if.cpp ;