# This Jamfile requires boost-build v2 to build. # The version shipped with boost 1.34.0 import modules ; import os ; import errors ; import feature : feature ; BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ; ECHO "BOOST_ROOT =" $(BOOST_ROOT) ; ECHO "OS =" [ os.name ] ; if $(BOOST_ROOT) { use-project /boost : $(BOOST_ROOT) ; } # rule for linking the correct libraries depending # on features and target-os rule linking ( properties * ) { local result ; # openssl libraries, if enabled if sha-1 in $(properties) || pe in $(properties) { if windows in $(properties) { result += ssleay32 libeay32 advapi32 user32 shell32 gdi32 ; } else { result += crypto ; } } # socket functions on windows require winsock libraries if windows in $(properties) || cygwin in $(properties) { result += ws2_32 wsock32 WIN32_LEAN_AND_MEAN _WIN32_WINNT=0x0500 __USE_W32_SOCKETS WIN32 _WIN32 ; } # clock_gettime on linux requires librt if linux in $(properties) { # when do one need to link against librt? # result += rt ; } if system in $(properties) { result += filesystem thread ; } if source in $(properties) { result += /boost/thread//boost_thread /boost/filesystem//boost_filesystem $(BOOST_ROOT) BOOST_ALL_NO_LIB ; } return $(result) ; } # rule for adding the right source files # depending on target-os and features rule building ( properties * ) { local result ; if off in $(properties) { result += src/sha1.cpp ; } else { if pe in $(properties) { result += src/pe_crypto.cpp ; } } if windows in $(properties) { result += src/file_win.cpp ; } else { result += src/file.cpp ; } return $(result) ; } feature logging : none default verbose : composite propagated symmetric link-incompatible ; feature.compose default : TORRENT_LOGGING ; feature.compose verbose : TORRENT_VERBOSE_LOGGING ; feature dht-support : on off logging : composite propagated symmetric link-incompatible ; feature.compose off : TORRENT_DISABLE_DHT ; feature.compose logging : TORRENT_DHT_VERBOSE_LOGGING ; feature openssl : pe sha-1 off : composite propagated symmetric link-incompatible ; feature.compose pe : TORRENT_USE_OPENSSL ; feature.compose sha-1 : TORRENT_USE_OPENSSL TORRENT_DISABLE_ENCRYPTION ; feature.compose off : TORRENT_DISABLE_ENCRYPTION ; feature resolve-countries : on off : composite propagated symmetric link-incompatible ; feature.compose off : TORRENT_DISABLE_RESOLVE_COUNTRIES ; feature character-set : ansi unicode : composite propagated link-incompatible ; feature.compose unicode : _UNICODE UNICODE ; feature zlib : shipped system : composite propagated link-incompatible ; feature.compose shipped : ; feature.compose system : ; feature statistics : off on : composite propagated symmetric link-incompatible ; feature.compose on : TORRENT_STATS ; feature upnp-logging : off on : composite propagated link-incompatible ; feature.compose on : TORRENT_UPNP_LOGGING ; feature boost : system source : link-incompatible propagated ; feature debug-iterators : off on : composite propagated link-incompatible ; feature.compose on : _SCL_SECURE=1 _GLIBCXX_DEBUG ; # required for openssl on windows lib ssleay32 : : ssleay32 ; lib libeay32 : : libeay32 ; lib advapi32 : : Advapi32 ; lib user32 : : User32 ; lib shell32 : : shell32 ; lib gdi32 : : gdi32 ; local library-search-path = /opt/local/lib /usr/lib /usr/local/lib /sw/lib ; lib filesystem : : boost_filesystem $(library-search-path) ; lib thread : : boost_thread $(library-search-path) ; # openssl on linux/bsd/macos etc. lib crypto : : crypto ; # time functions used on linux require librt lib librt : : rt ; # libz lib zlib-target : : z ; # socket libraries on windows lib wsock32 : : wsock32 ; lib ws2_32 : : ws2_32 ; SOURCES = alert connection_queue entry escape_string http_connection http_stream identify_client ip_filter peer_connection bt_peer_connection web_peer_connection instantiate_connection natpmp piece_picker policy session session_impl socks4_stream socks5_stream stat storage torrent torrent_handle torrent_info tracker_manager http_tracker_connection udp_tracker_connection sha1 metadata_transfer upnp ut_pex logger file_pool lsd disk_io_thread ; KADEMLIA_SOURCES = kademlia/closest_nodes kademlia/dht_tracker kademlia/node kademlia/refresh kademlia/rpc_manager kademlia/find_data kademlia/node_id kademlia/routing_table kademlia/traversal_algorithm ; ZLIB_SOURCES = adler32 compress crc32 deflate gzio infback inffast inflate inftrees trees uncompr zutil ; local usage-requirements = ./include ./include/libtorrent shipped:./zlib release:NDEBUG _FILE_OFFSET_BITS=64 BOOST_MULTI_INDEX_DISABLE_SERIALIZATION @linking system:zlib-target # these compiler settings just makes the compiler standard conforming msvc:/Zc:wchar_t msvc:/Zc:forScope # disable bogus deprecation warnings on msvc8 msvc:_SCL_SECURE_NO_DEPRECATE msvc:_CRT_SECURE_NO_DEPRECATE ; project torrent ; lib torrent : # sources src/$(SOURCES).cpp : # requirements BOOST_THREAD_USE_LIB multi shared:TORRENT_BUILDING_SHARED on:src/$(KADEMLIA_SOURCES).cpp logging:src/$(KADEMLIA_SOURCES).cpp shipped:zlib/$(ZLIB_SOURCES).c @building $(usage-requirements) : # default build static : # usage requirements $(usage-requirements) ;