forked from premiere/premiere-libtorrent
updated makefiles for automake
This commit is contained in:
parent
6f03731c1e
commit
1e8b11adb3
|
@ -13,7 +13,7 @@ kademlia/traversal_algorithm.cpp
|
||||||
endif
|
endif
|
||||||
|
|
||||||
libtorrent_la_SOURCES = allocate_resources.cpp \
|
libtorrent_la_SOURCES = allocate_resources.cpp \
|
||||||
bandwidth_manager.cpp entry.cpp escape_string.cpp \
|
entry.cpp escape_string.cpp \
|
||||||
peer_connection.cpp bt_peer_connection.cpp web_peer_connection.cpp \
|
peer_connection.cpp bt_peer_connection.cpp web_peer_connection.cpp \
|
||||||
natpmp.cpp piece_picker.cpp policy.cpp session.cpp session_impl.cpp sha1.cpp \
|
natpmp.cpp piece_picker.cpp policy.cpp session.cpp session_impl.cpp sha1.cpp \
|
||||||
stat.cpp storage.cpp torrent.cpp torrent_handle.cpp pe_crypto.cpp \
|
stat.cpp storage.cpp torrent.cpp torrent_handle.cpp pe_crypto.cpp \
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
noinst_PROGRAMS = test_hasher test_bencoding test_ip_filter test_piece_picker test_storage test_metadata_extension test_buffer test_allocate_resources test_swarm test_pe_crypto
|
noinst_PROGRAMS = test_hasher test_bencoding test_ip_filter test_piece_picker \
|
||||||
|
test_storage test_metadata_extension test_buffer test_allocate_resources \
|
||||||
|
test_swarm test_pe_crypto test_primitives \
|
||||||
|
test_bandwidth_limiter
|
||||||
EXTRA_DIST = Jamfile
|
EXTRA_DIST = Jamfile
|
||||||
|
|
||||||
test_hasher_SOURCES = main.cpp test_hasher.cpp
|
test_hasher_SOURCES = main.cpp test_hasher.cpp
|
||||||
|
@ -31,6 +34,12 @@ test_swarm_LDADD = $(top_builddir)/src/libtorrent.la
|
||||||
test_pe_crypto_SOURCES = main.cpp test_pe_crypto.cpp
|
test_pe_crypto_SOURCES = main.cpp test_pe_crypto.cpp
|
||||||
test_pe_crypto_LDADD = $(top_builddir)/src/libtorrent.la $(top_builddir)/test/setup_transfer.o
|
test_pe_crypto_LDADD = $(top_builddir)/src/libtorrent.la $(top_builddir)/test/setup_transfer.o
|
||||||
|
|
||||||
|
test_primitives_SOURCES = main.cpp test_primitives.cpp
|
||||||
|
test_primitives_LDADD = $(top_builddir)/src/libtorrent.la
|
||||||
|
|
||||||
|
test_bandwidth_limiter_SOURCES = main.cpp test_bandwidth_limiter.cpp
|
||||||
|
test_bandwidth_limiter_LDADD = $(top_builddir)/src/libtorrent.la
|
||||||
|
|
||||||
noinst_HEADERS = test.hpp setup_transfer.hpp
|
noinst_HEADERS = test.hpp setup_transfer.hpp
|
||||||
|
|
||||||
AM_CXXFLAGS=-ftemplate-depth-50 -I$(top_srcdir)/include -I$(top_srcdir)/include/libtorrent @DEBUGFLAGS@ @PTHREAD_CFLAGS@
|
AM_CXXFLAGS=-ftemplate-depth-50 -I$(top_srcdir)/include -I$(top_srcdir)/include/libtorrent @DEBUGFLAGS@ @PTHREAD_CFLAGS@
|
||||||
|
|
Loading…
Reference in New Issue