summaryrefslogtreecommitdiff
path: root/test/Makefile.am
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@yahoo.com>2017-05-28 23:33:59 +0200
committerJoel Klinghed <the_jk@yahoo.com>2017-05-28 23:33:59 +0200
commitb00bafae3f1b123d2108454ae5da4c703c91661c (patch)
tree646c6af6ddcdd6a4354a3981cf02960a016f8fd4 /test/Makefile.am
parent8f5db09e6c6887dbd7a03912490b481c5ed6ae12 (diff)
Add Observers, useful class for notifying listeners
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 c23bd9f..4daf511 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -2,7 +2,8 @@ MAINTAINERCLEANFILES = Makefile.in
AM_CXXFLAGS = @DEFINES@
-TESTS = test-url test-http test-args test-xdg test-paths test-strings
+TESTS = test-url test-http test-args test-xdg test-paths test-strings \
+ test-observers
check_PROGRAMS = $(TESTS)
@@ -23,3 +24,5 @@ test_strings_LDADD = $(top_builddir)/src/libtp.a
test_paths_SOURCES = test-paths.cc
test_paths_LDADD = $(top_builddir)/src/libtp.a
+
+test_observers_SOURCES = test-observers.cc