premiere-libtorrent/examples/Makefile.am

44 lines
1.4 KiB
Makefile
Raw Normal View History

2012-01-02 20:32:15 +01:00
example_programs = \
client_test \
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 \
2012-09-24 05:55:42 +02:00
connection_tester
if ENABLE_EXAMPLES
bin_PROGRAMS = $(example_programs)
endif
EXTRA_PROGRAMS = $(example_programs)
2014-11-19 10:23:08 +01:00
EXTRA_DIST = Jamfile CMakeLists.txt run_cmake.sh.in cmake/FindLibtorrentRasterbar.cmake
client_test_SOURCES = client_test.cpp print.cpp session_view.cpp torrent_view.cpp
#client_test_LDADD = $(top_builddir)/src/libtorrent-rasterbar.la
2014-07-06 21:18:00 +02:00
stats_counters_SOURCES = stats_counters.cpp
#stats_counters_LDADD = $(top_builddir)/src/libtorrent-rasterbar.la
dump_torrent_SOURCES = dump_torrent.cpp
#dump_torrent_LDADD = $(top_builddir)/src/libtorrent-rasterbar.la
make_torrent_SOURCES = make_torrent.cpp
#make_torrent_LDADD = $(top_builddir)/src/libtorrent-rasterbar.la
simple_client_SOURCES = simple_client.cpp
#simple_client_LDADD = $(top_builddir)/src/libtorrent-rasterbar.la
2012-09-24 05:55:42 +02:00
connection_tester_SOURCES = connection_tester.cpp
#connection_tester_LDADD = $(top_builddir)/src/libtorrent-rasterbar.la
2013-01-22 18:00:00 +01:00
upnp_test_SOURCES = upnp_test.cpp
#upnp_test_LDADD = $(top_builddir)/src/libtorrent-rasterbar.la
LDADD = $(top_builddir)/src/libtorrent-rasterbar.la
AM_CPPFLAGS = -ftemplate-depth-50 -I$(top_srcdir)/include @DEBUGFLAGS@
AM_LDFLAGS = @BOOST_SYSTEM_LIB@ @BOOST_CHRONO_LIB@ @BOOST_RANDOM_LIB@ @OPENSSL_LDFLAGS@ @OPENSSL_LIBS@