blob: 643d9988953c60a596d56098eece5f31244709ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
AM_CPPFLAGS = -I$(top_srcdir)/libkmime $(all_includes)
LDADD = ../libkmime.la
# test programs:
check_PROGRAMS = test_kmime_header_parsing \
test_charfreq \
test_mdn \
test_dates \
test_kmime_codec
test_kmime_codec_SOURCES = test_kmime_codec.cpp
test_charfreq_SOURCES = test_charfreq.cpp
test_mdn_SOURCES = test_mdn.cpp
test_dates_SOURCES = test_dates.cpp
test_kmime_header_parsing_SOURCES = test_kmime_header_parsing.cpp
|