Rewrite autotools build system (new configure.ac, changes for various
Makefile.am and fixed m4 scripts). Could still need some fixes.
This commit is contained in:
@@ -1,13 +1,33 @@
|
||||
test_programs = test_hasher test_bencoding test_ip_filter test_piece_picker \
|
||||
test_storage test_metadata_extension test_buffer test_swarm test_pe_crypto test_primitives \
|
||||
test_bandwidth_limiter test_fast_extension test_pex test_web_seed \
|
||||
test_http_connection test_torrent test_transfer test_lsd
|
||||
test_programs = \
|
||||
test_auto_unchoke \
|
||||
test_bandwidth_limiter \
|
||||
test_bdecode_performance \
|
||||
test_bencoding \
|
||||
test_buffer \
|
||||
test_fast_extension \
|
||||
test_hasher \
|
||||
test_http_connection \
|
||||
test_ip_filter \
|
||||
test_lsd \
|
||||
test_metadata_extension \
|
||||
test_natpmp \
|
||||
test_pe_crypto \
|
||||
test_pex \
|
||||
test_piece_picker \
|
||||
test_primitives \
|
||||
test_storage \
|
||||
test_swarm \
|
||||
test_torrent \
|
||||
test_trackers_extension \
|
||||
test_transfer \
|
||||
test_upnp \
|
||||
test_web_seed
|
||||
|
||||
if ENABLE_TESTS
|
||||
# no indent here! - BSD make issue
|
||||
check_PROGRAMS = $(test_programs)
|
||||
noinst_LTLIBRARIES = libtest.la
|
||||
endif
|
||||
|
||||
TESTS = $(check_PROGRAMS)
|
||||
|
||||
EXTRA_DIST = Jamfile
|
||||
@@ -17,27 +37,33 @@ noinst_HEADERS = test.hpp setup_transfer.hpp
|
||||
|
||||
libtest_la_SOURCES = main.cpp setup_transfer.cpp
|
||||
|
||||
test_lsd_SOURCES = test_lsd.cpp
|
||||
test_http_connection_SOURCES = test_http_connection.cpp
|
||||
test_web_seed_SOURCES = test_web_seed.cpp
|
||||
test_pex_SOURCES = test_pex.cpp
|
||||
test_auto_unchoke_SOURCES = test_auto_unchoke.cpp
|
||||
test_bandwidth_limiter_SOURCES = test_bandwidth_limiter.cpp
|
||||
test_bdecode_performance_SOURCES = test_bdecode_performance.cpp
|
||||
test_bencoding_SOURCES = test_bencoding.cpp
|
||||
test_buffer_SOURCES = test_buffer.cpp
|
||||
test_fast_extension_SOURCES = test_fast_extension.cpp
|
||||
test_hasher_SOURCES = test_hasher.cpp
|
||||
test_bencoding_SOURCES = test_bencoding.cpp
|
||||
test_http_connection_SOURCES = test_http_connection.cpp
|
||||
test_ip_filter_SOURCES = test_ip_filter.cpp
|
||||
test_piece_picker_SOURCES = test_piece_picker.cpp
|
||||
test_storage_SOURCES = test_storage.cpp
|
||||
test_buffer_SOURCES = test_buffer.cpp
|
||||
test_lsd_SOURCES = test_lsd.cpp
|
||||
test_metadata_extension_SOURCES = test_metadata_extension.cpp
|
||||
test_swarm_SOURCES = test_swarm.cpp
|
||||
test_natpmp_SOURCES = test_natpmp.cpp
|
||||
test_pe_crypto_SOURCES = test_pe_crypto.cpp
|
||||
test_pex_SOURCES = test_pex.cpp
|
||||
test_piece_picker_SOURCES = test_piece_picker.cpp
|
||||
test_primitives_SOURCES = test_primitives.cpp
|
||||
test_bandwidth_limiter_SOURCES = test_bandwidth_limiter.cpp
|
||||
test_storage_SOURCES = test_storage.cpp
|
||||
test_swarm_SOURCES = test_swarm.cpp
|
||||
test_torrent_SOURCES = test_torrent.cpp
|
||||
test_trackers_extension_SOURCES = test_trackers_extension.cpp
|
||||
test_transfer_SOURCES = test_transfer.cpp
|
||||
test_upnp_SOURCES = test_upnp.cpp
|
||||
test_web_seed_SOURCES = test_web_seed.cpp
|
||||
|
||||
LDADD = $(top_builddir)/src/libtorrent-rasterbar.la libtest.la
|
||||
|
||||
AM_CXXFLAGS=-ftemplate-depth-50 -I$(top_srcdir)/include -I$(top_srcdir)/include/libtorrent @DEBUGFLAGS@ @PTHREAD_CFLAGS@
|
||||
AM_LDFLAGS= @BOOST_SYSTEM_LIB@ @BOOST_FILESYSTEM_LIB@ @BOOST_THREAD_LIB@ @PTHREAD_LIBS@ @SSL_LDFLAGS@ @SSL_LIBS@
|
||||
#AM_CXXFLAGS=-ftemplate-depth-50 -I$(top_srcdir)/include -I$(top_srcdir)/include/libtorrent @DEBUGFLAGS@ @PTHREAD_CFLAGS@
|
||||
AM_CPPFLAGS=-ftemplate-depth-50 -I$(top_srcdir)/include @DEBUGFLAGS@
|
||||
|
||||
#AM_LDFLAGS= @BOOST_SYSTEM_LIB@ @BOOST_FILESYSTEM_LIB@ @BOOST_THREAD_LIB@ @PTHREAD_LIBS@ @SSL_LDFLAGS@ @SSL_LIBS@
|
||||
|
Reference in New Issue
Block a user