premiere-libtorrent/Jamfile

184 lines
3.9 KiB
Plaintext
Raw Normal View History

2004-02-18 01:08:20 +01:00
#This Jamfile requires boost-build v2 to build.
2004-02-04 21:20:53 +01:00
import modules ;
2004-02-21 12:52:21 +01:00
import os ;
2005-01-11 03:13:07 +01:00
import errors ;
import feature : feature ;
#import pch ;
2004-02-04 21:20:53 +01:00
BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ;
2004-07-25 23:44:53 +02:00
ECHO "BOOST_ROOT =" $(BOOST_ROOT) ;
ECHO "OS =" [ os.name ] ;
2005-01-11 03:13:07 +01:00
if ! $(BOOST_ROOT)
{
errors.user-error
"BOOST_ROOT must be set to your boost installation path." ;
}
2004-11-01 00:16:08 +01:00
use-project /boost : $(BOOST_ROOT) ;
2004-03-17 13:14:44 +01:00
feature logging : none default verbose : composite propagated symmetric link-incompatible ;
feature.compose <logging>none : ;
feature.compose <logging>default : <define>TORRENT_LOGGING ;
feature.compose <logging>verbose : <define>TORRENT_VERBOSE_LOGGING ;
2004-11-01 00:16:08 +01:00
feature dht-support : on off logging : composite propagated symmetric link-incompatible ;
feature.compose <dht-support>on : ;
feature.compose <dht-support>off : <define>TORRENT_DISABLE_DHT ;
feature.compose <dht-support>logging : <define>TORRENT_DHT_VERBOSE_LOGGING ;
2004-02-04 12:00:29 +01:00
feature openssl : off on : composite propagated symmetric link-incompatible ;
feature.compose <openssl>off : ;
feature.compose <openssl>on : <define>TORRENT_USE_OPENSSL ;
SOURCES =
2004-02-18 01:08:20 +01:00
allocate_resources.cpp
2004-02-08 17:04:50 +01:00
alert.cpp
bandwidth_manager.cpp
entry.cpp
2004-03-26 12:39:17 +01:00
escape_string.cpp
2005-01-11 03:13:07 +01:00
file.cpp
http_connection.cpp
2003-12-22 08:14:35 +01:00
identify_client.cpp
ip_filter.cpp
peer_connection.cpp
bt_peer_connection.cpp
web_peer_connection.cpp
natpmp.cpp
piece_picker.cpp
policy.cpp
session.cpp
2006-10-12 00:04:45 +02:00
session_impl.cpp
stat.cpp
storage.cpp
torrent.cpp
2003-10-30 00:28:09 +01:00
torrent_handle.cpp
torrent_info.cpp
2004-02-01 11:32:40 +01:00
tracker_manager.cpp
http_tracker_connection.cpp
udp_tracker_connection.cpp
metadata_transfer.cpp
upnp.cpp
ut_pex.cpp
logger.cpp
file_pool.cpp
lsd.cpp
;
KADEMLIA_SOURCES =
kademlia/closest_nodes.cpp
kademlia/dht_tracker.cpp
kademlia/node.cpp
kademlia/refresh.cpp
kademlia/rpc_manager.cpp
kademlia/find_data.cpp
kademlia/node_id.cpp
kademlia/routing_table.cpp
kademlia/traversal_algorithm.cpp
2004-02-21 12:52:21 +01:00
;
2004-02-08 17:04:50 +01:00
2004-03-28 19:45:37 +02:00
ZLIB_SOURCES =
adler32.c
compress.c
crc32.c
deflate.c
gzio.c
infback.c
inffast.c
inflate.c
inftrees.c
trees.c
uncompr.c
zutil.c
;
2006-11-22 18:54:02 +01:00
DEFINES = ;
LIBS = ;
if [ os.name ] = CYGWIN
{
2007-04-06 01:12:50 +02:00
lib wsock32 : : <name>wsock32 ;
lib ws2_32 : : <name>ws2_32 ;
LIBS += wsock32 ws2_32 ;
DEFINES += WIN32_LEAN_AND_MEAN ;
DEFINES += _WIN32_WINNT=0x0500 ;
2006-11-22 18:54:02 +01:00
DEFINES += __USE_W32_SOCKETS ;
2007-04-06 01:12:50 +02:00
DEFINES += WIN32 ;
2006-11-22 18:54:02 +01:00
}
# some windows specific settings
if [ os.name ] = NT
{
lib wsock32 : : <name>wsock32.lib ;
LIBS += wsock32 ;
2007-04-06 01:12:50 +02:00
DEFINES += WIN32_LEAN_AND_MEAN ;
DEFINES += _WIN32_WINNT=0x0500 ;
DEFINES += WIN32 ;
2006-11-22 18:54:02 +01:00
}
lib openssl_lib : : <name>crypto ;
project torrent
: requirements
<include>./include
<include>./include/libtorrent
<include>./zlib
<include>$(BOOST_ROOT)
<variant>release:<define>NDEBUG
<define>BOOST_ALL_NO_LIB
<define>_FILE_OFFSET_BITS=64
<define>BOOST_THREAD_USE_LIB
2006-11-22 18:54:02 +01:00
<define>$(DEFINES)
<library>/boost/thread//boost_thread #/<link>static
<library>/boost/filesystem//boost_filesystem #/<link>static
<threading>multi
2007-04-06 01:12:50 +02:00
# ======= compiler settings =======
# these compiler settings just makes the compiler standard conforming
<toolset>msvc:<cxxflags>/Zc:wchar_t
<toolset>msvc:<cxxflags>/Zc:forScope
# disable bogus deprecation warnings on msvc8
<toolset>msvc:<define>_SCL_SECURE_NO_DEPRECATE
<toolset>msvc:<define>_CRT_SECURE_NO_DEPRECATE
# this should be defined when libtorrent is built as
# a dll. It will make sure the functions and classes
# are exported (GCC 4 and msvc)
<link>shared:<define>TORRENT_BUILDING_SHARED
<link>shared:<define>TORRENT_LINKING_SHARED
: usage-requirements
<include>./include
<include>./include/libtorrent
<include>$(BOOST_ROOT)
<variant>release:<define>NDEBUG
<define>BOOST_ALL_NO_LIB
2006-11-22 18:54:02 +01:00
<define>$(DEFINES)
<link>shared:<define>TORRENT_LINKING_SHARED
;
#cpp-pch pch : include/libtorrent/pch.hpp ;
lib torrent
2004-02-04 12:00:29 +01:00
:
src/$(SOURCES)
2004-03-28 19:45:37 +02:00
zlib/$(ZLIB_SOURCES)
2004-04-17 15:27:58 +02:00
$(LIBS)
# pch
:
<dht-support>on:<source>src/$(KADEMLIA_SOURCES)
<dht-support>logging:<source>src/$(KADEMLIA_SOURCES)
<openssl>off:<source>src/sha1.cpp
<openssl>on:<library>openssl_lib
;