premiere-libtorrent/Jamfile

44 lines
683 B
Plaintext
Raw Normal View History

2003-10-27 16:43:33 +01:00
project boost : $(BOOST_ROOT) ;
SOURCES =
entry.cpp
peer_connection.cpp
piece_picker.cpp
policy.cpp
session.cpp
# socket_bsd.cpp
socket_win.cpp
stat.cpp
storage.cpp
torrent.cpp
torrent_info.cpp
url_handler.cpp
sha1.c
;
lib torrent
: src/$(SOURCES)
: <include>$(BOOST_ROOT)
<sysinclude>$(BOOST_ROOT)
<include>./include
<include>./
<threading>multi
<link>static
: debug release
;
2003-10-23 18:55:52 +02:00
exe client_test
: examples/client_test.cpp
<lib>torrent
2003-10-27 16:43:33 +01:00
@boost/libs/filesystem/build/boost_filesystem
@boost/libs/thread/build/boost_thread
2003-10-23 18:55:52 +02:00
: <include>$(BOOST_ROOT)
<sysinclude>$(BOOST_ROOT)
<include>./include
<threading>multi
: debug release
;