fixes bug where priorities where lost when force-rechecking.
[libtorrent.git] / bindings / python / Jamfile
blob068a0bee06709f39a20117f6613413763e80dc77
1 import python ;
3 use-project /torrent : ../.. ;
5 lib boost_python : : <name>boost_python $(library-search-path) ;
7 python-extension libtorrent 
8   : src/module.cpp
9     src/big_number.cpp
10     src/fingerprint.cpp
11     src/utility.cpp
12     src/session.cpp
13     src/entry.cpp
14     src/torrent_info.cpp
15     src/filesystem.cpp
16     src/torrent_handle.cpp
17     src/torrent_status.cpp
18     src/session_settings.cpp
19     src/version.cpp
20     src/alert.cpp
21     src/datetime.cpp
22     src/extensions.cpp
23     src/peer_plugin.cpp
24     src/docstrings.cpp
25     src/torrent.cpp
26     src/peer_info.cpp
27     src/ip_filter.cpp
28   : <include>src
29     <boost>system:<library>boost_python
30     <boost>source,<boost-link>static:<library>/boost/python//boost_python/<link>static
31     <boost>source,<boost-link>shared:<library>/boost/python//boost_python/<link>shared
32     <library>/torrent//torrent/<link>static
33   ;