2012-01-02 20:32:15 +01:00
|
|
|
example_programs = \
|
|
|
|
client_test \
|
2014-08-16 22:26:00 +02:00
|
|
|
stats_counters \
|
2012-01-02 20:32:15 +01:00
|
|
|
dump_torrent \
|
|
|
|
make_torrent \
|
|
|
|
simple_client \
|
2013-01-22 18:00:00 +01:00
|
|
|
upnp_test \
|
2016-02-21 23:09:41 +01:00
|
|
|
bt_get \
|
|
|
|
bt_get2 \
|
2012-09-24 05:55:42 +02:00
|
|
|
connection_tester
|
2009-09-10 04:22:13 +02:00
|
|
|
|
2008-09-02 13:14:10 +02:00
|
|
|
if ENABLE_EXAMPLES
|
2009-09-10 04:22:13 +02:00
|
|
|
bin_PROGRAMS = $(example_programs)
|
2008-09-02 13:14:10 +02:00
|
|
|
endif
|
2009-09-10 04:22:13 +02:00
|
|
|
|
|
|
|
EXTRA_PROGRAMS = $(example_programs)
|
2016-08-23 08:04:24 +02:00
|
|
|
EXTRA_DIST = Jamfile CMakeLists.txt run_cmake.sh.in session_view.hpp torrent_view.hpp print.hpp cmake/FindLibtorrentRasterbar.cmake
|
2005-08-17 02:24:41 +02:00
|
|
|
|
2014-10-15 07:07:26 +02:00
|
|
|
client_test_SOURCES = client_test.cpp print.cpp session_view.cpp torrent_view.cpp
|
2014-07-06 21:18:00 +02:00
|
|
|
stats_counters_SOURCES = stats_counters.cpp
|
2016-02-21 23:09:41 +01:00
|
|
|
bt_get_SOURCES = bt-get.cpp
|
|
|
|
bt_get2_SOURCES = bt-get2.cpp
|
2017-02-25 20:09:11 +01:00
|
|
|
bt_get_CXXFLAGS = -std=c++11
|
|
|
|
bt_get2_CXXFLAGS = -std=c++11
|
2005-08-17 02:24:41 +02:00
|
|
|
dump_torrent_SOURCES = dump_torrent.cpp
|
|
|
|
make_torrent_SOURCES = make_torrent.cpp
|
|
|
|
simple_client_SOURCES = simple_client.cpp
|
2012-09-24 05:55:42 +02:00
|
|
|
connection_tester_SOURCES = connection_tester.cpp
|
2013-01-22 18:00:00 +01:00
|
|
|
upnp_test_SOURCES = upnp_test.cpp
|
|
|
|
|
2009-09-10 04:22:13 +02:00
|
|
|
LDADD = $(top_builddir)/src/libtorrent-rasterbar.la
|
2008-03-17 03:40:14 +01:00
|
|
|
|
2017-02-26 15:31:27 +01:00
|
|
|
AM_CPPFLAGS = -ftemplate-depth-50 -I$(top_srcdir)/include @DEBUGFLAGS@ @OPENSSL_INCLUDES@
|
2007-12-14 21:53:56 +01:00
|
|
|
|
2016-08-02 06:46:15 +02:00
|
|
|
AM_LDFLAGS = @BOOST_SYSTEM_LIB@ @OPENSSL_LDFLAGS@ @OPENSSL_LIBS@
|
2015-07-27 23:49:22 +02:00
|
|
|
|