2012-01-02 19:32:15 +00:00
|
|
|
example_programs = \
|
|
|
|
client_test \
|
2014-08-16 20:26:00 +00:00
|
|
|
stats_counters \
|
2012-01-02 19:32:15 +00:00
|
|
|
dump_torrent \
|
|
|
|
make_torrent \
|
|
|
|
simple_client \
|
2013-01-22 17:00:00 +00:00
|
|
|
upnp_test \
|
2012-09-24 03:55:42 +00:00
|
|
|
connection_tester
|
2009-09-10 02:22:13 +00:00
|
|
|
|
2008-09-02 11:14:10 +00:00
|
|
|
if ENABLE_EXAMPLES
|
2009-09-10 02:22:13 +00:00
|
|
|
bin_PROGRAMS = $(example_programs)
|
2008-09-02 11:14:10 +00:00
|
|
|
endif
|
2009-09-10 02:22:13 +00:00
|
|
|
|
|
|
|
EXTRA_PROGRAMS = $(example_programs)
|
2014-11-19 09:23:08 +00:00
|
|
|
EXTRA_DIST = Jamfile CMakeLists.txt run_cmake.sh.in cmake/FindLibtorrentRasterbar.cmake
|
2005-08-17 00:24:41 +00:00
|
|
|
|
2014-10-15 05:07:26 +00:00
|
|
|
client_test_SOURCES = client_test.cpp print.cpp session_view.cpp torrent_view.cpp
|
2009-09-10 02:22:13 +00:00
|
|
|
#client_test_LDADD = $(top_builddir)/src/libtorrent-rasterbar.la
|
2005-08-17 00:24:41 +00:00
|
|
|
|
2014-07-06 19:18:00 +00:00
|
|
|
stats_counters_SOURCES = stats_counters.cpp
|
|
|
|
#stats_counters_LDADD = $(top_builddir)/src/libtorrent-rasterbar.la
|
|
|
|
|
2005-08-17 00:24:41 +00:00
|
|
|
dump_torrent_SOURCES = dump_torrent.cpp
|
2009-09-10 02:22:13 +00:00
|
|
|
#dump_torrent_LDADD = $(top_builddir)/src/libtorrent-rasterbar.la
|
2005-08-17 00:24:41 +00:00
|
|
|
|
|
|
|
make_torrent_SOURCES = make_torrent.cpp
|
2009-09-10 02:22:13 +00:00
|
|
|
#make_torrent_LDADD = $(top_builddir)/src/libtorrent-rasterbar.la
|
2005-08-17 00:24:41 +00:00
|
|
|
|
|
|
|
simple_client_SOURCES = simple_client.cpp
|
2009-09-10 02:22:13 +00:00
|
|
|
#simple_client_LDADD = $(top_builddir)/src/libtorrent-rasterbar.la
|
2005-08-17 00:24:41 +00:00
|
|
|
|
2012-09-24 03:55:42 +00:00
|
|
|
connection_tester_SOURCES = connection_tester.cpp
|
|
|
|
#connection_tester_LDADD = $(top_builddir)/src/libtorrent-rasterbar.la
|
|
|
|
|
2013-01-22 17:00:00 +00:00
|
|
|
upnp_test_SOURCES = upnp_test.cpp
|
|
|
|
#upnp_test_LDADD = $(top_builddir)/src/libtorrent-rasterbar.la
|
|
|
|
|
2009-09-10 02:22:13 +00:00
|
|
|
LDADD = $(top_builddir)/src/libtorrent-rasterbar.la
|
2008-03-17 02:40:14 +00:00
|
|
|
|
2009-09-10 02:22:13 +00:00
|
|
|
AM_CPPFLAGS = -ftemplate-depth-50 -I$(top_srcdir)/include @DEBUGFLAGS@
|
2007-12-14 20:53:56 +00:00
|
|
|
|
2015-07-27 14:49:22 -07:00
|
|
|
AM_LDFLAGS = @BOOST_SYSTEM_LIB@ @BOOST_CHRONO_LIB@ @BOOST_RANDOM_LIB@ @OPENSSL_LDFLAGS@ @OPENSSL_LIBS@
|
|
|
|
|