premiere-libtorrent/Jamfile

49 lines
785 B
Plaintext
Raw Normal View History

SOURCES =
entry.cpp
2003-12-22 08:14:35 +01:00
identify_client.cpp
peer_connection.cpp
piece_picker.cpp
policy.cpp
session.cpp
socket_win.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
file_win.cpp
sha1.c
;
2003-12-21 18:28:27 +01:00
lib torrent
: src/$(SOURCES)
2003-12-21 18:28:27 +01:00
# <lib>zlib/zlib
2004-02-01 14:48:30 +01:00
# zlib//zlib
2003-12-21 18:28:27 +01:00
# <file>boost_filesystem.lib
# <file>boost_date_time.lib
# <file>boost_thread.dll
: <include>$(BOOST_ROOT)
<sysinclude>$(BOOST_ROOT)
<include>./include
2003-12-21 18:28:27 +01:00
<include>./zlib
<threading>multi
<link>static
: debug release
;
2003-10-23 18:55:52 +02:00
exe client_test
: examples/client_test.cpp
2003-12-21 18:28:27 +01:00
<lib>torrent
2003-10-23 18:55:52 +02:00
: <include>$(BOOST_ROOT)
<sysinclude>$(BOOST_ROOT)
<include>./include
<threading>multi
: debug release
;