summaryrefslogtreecommitdiff
path: root/test/Makefile.am
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@yahoo.com>2017-08-06 22:07:03 +0200
committerJoel Klinghed <the_jk@yahoo.com>2017-08-06 22:24:59 +0200
commitbe1dc86b5434e84a88ba2e62873d87c62f8880c0 (patch)
treeba73db824c64890d196f843b0b72e11b0185e7fc /test/Makefile.am
parentd935594d14eb65b55db0d4e96d66a7404f2130d0 (diff)
Add utf module
Currently only has valid_utf8 and read_utf8
Diffstat (limited to 'test/Makefile.am')
-rw-r--r--test/Makefile.am5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index abc1f9c..5248547 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -3,7 +3,7 @@ MAINTAINERCLEANFILES = Makefile.in
AM_CXXFLAGS = @DEFINES@ -I$(top_srcdir)/src
TESTS = test-url test-http test-args test-xdg test-paths test-strings \
- test-observers test-htmlattrtext test-package
+ test-observers test-htmlattrtext test-package test-utf
check_PROGRAMS = $(TESTS)
@@ -32,3 +32,6 @@ test_htmlattrtext_LDADD = $(top_builddir)/src/libattrstr.a
test_package_SOURCES = test-package.cc test.hh
test_package_LDADD = $(top_builddir)/src/libtp.a
+
+test_utf_SOURCES = test-utf.cc test.hh
+test_utf_LDADD = $(top_builddir)/src/libtp.a