premiere-libtorrent/examples/Jamfile

47 lines
1.4 KiB
Plaintext
Raw Permalink Normal View History

import modules ;
BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ;
2004-04-17 14:29:35 +02:00
use-project /torrent : .. ;
if $(BOOST_ROOT)
{
use-project /boost : $(BOOST_ROOT) ;
}
variant debug-mode : debug : <asserts>on <debug-iterators>on <invariant-checks>full ;
project client_test
2018-04-29 00:58:24 +02:00
: requirements
<threading>multi <library>/torrent//torrent
<toolset>darwin:<cflags>-Wno-unused-command-line-argument
# disable warning C4275: non DLL-interface classkey 'identifier' used as base for DLL-interface classkey 'identifier'
<toolset>msvc:<cflags>/wd4275
2018-11-16 16:19:12 +01:00
# C4268: 'identifier' : 'const' static/global data initialized
# with compiler generated default constructor fills the object with zeros
<toolset>msvc:<cflags>/wd4268
2019-02-15 22:06:47 +01:00
<toolset>msvc:<cflags>/wd4373
: default-build
<link>static
<variant>debug-mode
2018-04-29 00:58:24 +02:00
;
2004-02-21 12:52:21 +01:00
exe client_test : client_test.cpp print.cpp torrent_view.cpp session_view.cpp ;
2005-01-11 03:13:07 +01:00
exe simple_client : simple_client.cpp ;
2019-02-15 22:06:47 +01:00
exe custom_storage : custom_storage.cpp ;
2016-02-21 23:09:41 +01:00
exe bt-get : bt-get.cpp ;
exe bt-get2 : bt-get2.cpp ;
2014-07-06 21:18:00 +02:00
exe stats_counters : stats_counters.cpp ;
2005-01-11 03:13:07 +01:00
exe dump_torrent : dump_torrent.cpp ;
exe make_torrent : make_torrent.cpp ;
exe connection_tester : connection_tester.cpp ;
exe upnp_test : upnp_test.cpp ;
2004-10-10 02:42:48 +02:00
2014-07-06 21:18:00 +02:00
explicit stage_client_test ;
explicit stage_connection_tester ;
install stage_client_test : client_test : <location>. ;
install stage_connection_tester : connection_tester : <location>. ;