From 2745c093dca7105672fd540f9d060a0ef1a1ce69 Mon Sep 17 00:00:00 2001 From: Chris Hiszpanski Date: Thu, 29 Apr 2021 01:30:50 -0700 Subject: Adds signaling to demo Adds simple HTTP/1.0 signaling to demo. Demo long-polls demo server (demo.liburtc.org) for an offer and posts an answer. Similarily, long-polls and posts candidates. --- examples/Makefile.am | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'examples/Makefile.am') diff --git a/examples/Makefile.am b/examples/Makefile.am index f2e28b1..945cc7f 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1,11 +1,5 @@ # Builds a minimal example program -#bin_PROGRAMS = example -#example_CFLAGS = -I$(top_srcdir)/src/include $(LWS_CFLAGS) -#example_LDADD = $(top_builddir)/src/liburtc.la $(LWS_LIBS) -#example_SOURCES = server.c - -# Builds a minimal example program -bin_PROGRAMS = sandbox -sandbox_CFLAGS = -I$(top_srcdir)/src -sandbox_LDADD = $(top_builddir)/src/liburtc.la -sandbox_SOURCES = sandbox.c +bin_PROGRAMS = demo +demo_CFLAGS = -I$(top_srcdir)/src +demo_LDADD = $(top_builddir)/src/liburtc.la +demo_SOURCES = demo.c -- cgit v1.2.3