2012-04-11 06:53:45 +02:00
|
|
|
import modules ;
|
|
|
|
|
|
|
|
BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ;
|
|
|
|
|
|
|
|
use-project /torrent : .. ;
|
|
|
|
|
|
|
|
if $(BOOST_ROOT)
|
|
|
|
{
|
|
|
|
use-project /boost : $(BOOST_ROOT) ;
|
|
|
|
}
|
|
|
|
|
2014-03-06 10:45:16 +01:00
|
|
|
rule link_libtorrent ( properties * )
|
|
|
|
{
|
|
|
|
local result ;
|
|
|
|
if <link>shared in $(properties)
|
|
|
|
{
|
|
|
|
result +=
|
2014-03-30 22:11:01 +02:00
|
|
|
<library>/torrent//torrent/<link>shared/<boost-link>shared ;
|
2014-03-06 10:45:16 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result +=
|
2014-03-30 22:11:01 +02:00
|
|
|
<library>/torrent//torrent/<link>static/<boost-link>static ;
|
2014-03-06 10:45:16 +01:00
|
|
|
}
|
|
|
|
return $(result) ;
|
|
|
|
}
|
|
|
|
|
2012-04-11 06:53:45 +02:00
|
|
|
project tools
|
|
|
|
: requirements
|
2014-03-06 10:45:16 +01:00
|
|
|
<threading>multi
|
2016-04-25 23:22:09 +02:00
|
|
|
# disable warning C4275: non DLL-interface classkey 'identifier' used as base for DLL-interface classkey 'identifier'
|
|
|
|
<toolset>msvc:<cflags>/wd4275
|
2014-03-06 10:45:16 +01:00
|
|
|
<conditional>@link_libtorrent
|
2012-04-11 06:53:45 +02:00
|
|
|
: default-build
|
|
|
|
<link>static
|
|
|
|
;
|
|
|
|
|
2015-01-28 05:39:20 +01:00
|
|
|
exe fuzz_torrent : fuzz_torrent.cpp ;
|
2014-07-06 21:18:00 +02:00
|
|
|
exe parse_access_log : parse_access_log.cpp ;
|
2014-03-03 00:35:35 +01:00
|
|
|
exe dht : dht_put.cpp : <include>../ed25519/src ;
|
2012-04-11 06:53:45 +02:00
|
|
|
|