premiere-libtorrent/tools/Jamfile

42 lines
852 B
Plaintext
Raw Normal View History

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) ;
}
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 ;
}
else
{
result +=
2014-03-30 22:11:01 +02:00
<library>/torrent//torrent/<link>static/<boost-link>static ;
}
return $(result) ;
}
2012-04-11 06:53:45 +02:00
project tools
: requirements
<threading>multi
# disable warning C4275: non DLL-interface classkey 'identifier' used as base for DLL-interface classkey 'identifier'
<toolset>msvc:<cflags>/wd4275
<conditional>@link_libtorrent
2012-04-11 06:53:45 +02:00
: default-build
<link>static
;
2014-07-06 21:18:00 +02:00
exe parse_access_log : parse_access_log.cpp ;
exe dht : dht_put.cpp : <include>../ed25519/src ;
exe session_log_alerts : session_log_alerts.cpp ;
2012-04-11 06:53:45 +02:00