taglib/tests/Makefile.am
Lukáš Lalinský 56343767ce Fix reading of WavPack streams without a length information in the header
When the WavPack's total_samples header fiels contains -1, try to find
the final block and get the number of samples from there as
block_index + block_samples.

BUG:258016


git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@1201476 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
2010-11-27 20:58:57 +00:00

44 lines
1.1 KiB
Makefile

INCLUDES = \
-I$(top_srcdir)/taglib\
-I$(top_srcdir)/taglib/toolkit \
-I$(top_srcdir)/taglib/trueaudio \
-I$(top_srcdir)/taglib/ape \
-I$(top_srcdir)/taglib/mpeg \
-I$(top_srcdir)/taglib/mpeg/id3v1 \
-I$(top_srcdir)/taglib/mpeg/id3v2 \
-I$(top_srcdir)/taglib/ogg \
-I$(top_srcdir)/taglib/ogg/vorbis \
-I$(top_srcdir)/taglib/ogg/flac \
-I$(top_srcdir)/taglib/flac \
-I$(top_srcdir)/taglib/riff \
-I$(top_srcdir)/taglib/riff/aiff \
-I$(top_srcdir)/taglib/mpeg/id3v2/frames \
-I$(top_srcdir)/taglib/wavpack
test_runner_SOURCES = \
main.cpp \
test_list.cpp \
test_map.cpp \
test_mpeg.cpp \
test_synchdata.cpp \
test_ape.cpp \
test_trueaudio.cpp \
test_bytevector.cpp \
test_string.cpp \
test_fileref.cpp \
test_id3v1.cpp \
test_id3v2.cpp \
test_xiphcomment.cpp \
test_riff.cpp \
test_aiff.cpp \
test_ogg.cpp \
test_oggflac.cpp \
test_flac.cpp \
test_wavpack.cpp
if build_tests
TESTS = test_runner
check_PROGRAMS = test_runner
LDADD = ../taglib/libtag.la -lcppunit
endif