forked from premiere/premiere-libtorrent
*** empty log message ***
This commit is contained in:
parent
32fc19002a
commit
fe7d5f2425
37
Jamfile
37
Jamfile
|
@ -1,5 +1,30 @@
|
||||||
|
import modules ;
|
||||||
|
|
||||||
|
BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ;
|
||||||
|
|
||||||
|
ECHO $(BOOST_ROOT)
|
||||||
|
|
||||||
|
use-project /boost/thread : $(BOOST_ROOT)/libs/thread/build ;
|
||||||
|
use-project /boost/filesystem : $(BOOST_ROOT)/libs/filesystem/build ;
|
||||||
|
use-project /boost/date_time : $(BOOST_ROOT)/libs/date_time/build ;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
project torrent
|
project torrent
|
||||||
: usage-requirements
|
: requirements
|
||||||
|
<use>/boost/thread
|
||||||
|
<use>/boost/date_time
|
||||||
|
<use>/boost/filesystem
|
||||||
|
|
||||||
|
<library>/boost/thread
|
||||||
|
<library>/boost/date_time
|
||||||
|
<library>/boost/filesystem
|
||||||
|
|
||||||
|
: usage-requirements
|
||||||
|
<use>/boost/thread
|
||||||
|
<use>/boost/date_time
|
||||||
|
<use>/boost/filesystem
|
||||||
|
|
||||||
<include>./include
|
<include>./include
|
||||||
<include>$(BOOST_ROOT)
|
<include>$(BOOST_ROOT)
|
||||||
|
|
||||||
|
@ -7,6 +32,7 @@ project torrent
|
||||||
|
|
||||||
<cxxflags>/Zc:wchar_t
|
<cxxflags>/Zc:wchar_t
|
||||||
<cxxflags>/D"WIN32"
|
<cxxflags>/D"WIN32"
|
||||||
|
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
||||||
|
@ -33,9 +59,9 @@ SOURCES =
|
||||||
|
|
||||||
lib torrent
|
lib torrent
|
||||||
:
|
:
|
||||||
# $(BOOST_ROOT)/libs/filesystem//boost_filesystem
|
# /boost/filesystem
|
||||||
# $(BOOST_ROOT)/libs/thread//boost_thread
|
# /boost/thread
|
||||||
# $(BOOST_ROOT)/libs/date_time//boost_date_time
|
# /boost/date_time
|
||||||
zlib//zlib
|
zlib//zlib
|
||||||
src/$(SOURCES)
|
src/$(SOURCES)
|
||||||
: <include>./include
|
: <include>./include
|
||||||
|
@ -48,7 +74,8 @@ lib torrent
|
||||||
exe client_test
|
exe client_test
|
||||||
: examples/client_test.cpp
|
: examples/client_test.cpp
|
||||||
torrent
|
torrent
|
||||||
: <sysinclude>$(BOOST_ROOT)
|
:
|
||||||
|
# <sysinclude>$(BOOST_ROOT)
|
||||||
<threading>multi
|
<threading>multi
|
||||||
: debug release
|
: debug release
|
||||||
;
|
;
|
||||||
|
|
Loading…
Reference in New Issue