From 6d88c555019f32509f303e23dcfbba824fecd2ee Mon Sep 17 00:00:00 2001 From: Chris Hiszpanski Date: Thu, 18 Apr 2019 00:55:30 -0700 Subject: Initial public commit. mDNS and SDP are functional. Otherwise, library is still very much a work in progress. All tests pass. --- tests/Makefile.am | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tests/Makefile.am (limited to 'tests/Makefile.am') diff --git a/tests/Makefile.am b/tests/Makefile.am new file mode 100644 index 0000000..27ebf83 --- /dev/null +++ b/tests/Makefile.am @@ -0,0 +1,32 @@ +# Build test programs (run with 'make check') +TESTS = $(check_PROGRAMS) +check_PROGRAMS = \ + g711_test \ + mdns_test \ + sdp_test \ + uuid_test + +g711_test_CFLAGS = -I$(top_srcdir)/src +g711_test_SOURCES = \ + g711_test.c \ + $(top_srcdir)/src/g711.c \ + $(top_srcdir)/src/g711_tables.c +g711_test_LDADD = $(top_builddir)/src/liburtc.la + +mdns_test_CFLAGS = -I$(top_srcdir)/src +mdns_test_SOURCES = \ + mdns_test.c \ + $(top_srcdir)/src/mdns.c +mdns_test_LDADD = $(top_builddir)/src/liburtc.la + +sdp_test_CFLAGS = -I$(top_srcdir)/src +sdp_test_SOURCES = \ + sdp_test.c \ + $(top_srcdir)/src/sdp.c +sdp_test_LDADD = $(top_builddir)/src/liburtc.la + +uuid_test_CFLAGS = -I$(top_srcdir)/src +uuid_test_SOURCES = \ + uuid_test.c \ + $(top_srcdir)/src/uuid.c +uuid_test_LDADD = $(top_builddir)/src/liburtc.la -- cgit v1.2.3