forked from premiere/premiere-libtorrent
49 lines
785 B
Plaintext
Executable File
49 lines
785 B
Plaintext
Executable File
SOURCES =
|
|
entry.cpp
|
|
identify_client.cpp
|
|
peer_connection.cpp
|
|
piece_picker.cpp
|
|
policy.cpp
|
|
session.cpp
|
|
socket_win.cpp
|
|
stat.cpp
|
|
storage.cpp
|
|
torrent.cpp
|
|
torrent_handle.cpp
|
|
torrent_info.cpp
|
|
tracker_manager.cpp
|
|
http_tracker_connection.cpp
|
|
udp_tracker_connection.cpp
|
|
file_win.cpp
|
|
sha1.c
|
|
;
|
|
|
|
|
|
lib torrent
|
|
: src/$(SOURCES)
|
|
# <lib>zlib/zlib
|
|
# zlib//zlib
|
|
# <file>boost_filesystem.lib
|
|
# <file>boost_date_time.lib
|
|
# <file>boost_thread.dll
|
|
: <include>$(BOOST_ROOT)
|
|
<sysinclude>$(BOOST_ROOT)
|
|
<include>./include
|
|
<include>./zlib
|
|
<threading>multi
|
|
<link>static
|
|
: debug release
|
|
;
|
|
|
|
|
|
exe client_test
|
|
: examples/client_test.cpp
|
|
<lib>torrent
|
|
: <include>$(BOOST_ROOT)
|
|
<sysinclude>$(BOOST_ROOT)
|
|
<include>./include
|
|
<threading>multi
|
|
: debug release
|
|
;
|
|
|