commit a8b2cce86981b62d139a947adde4194e4cb4fe39 parent bf89bd95f8d4401ddaabdb59023175e66bdbd80f Author: Evgeny Grin (Karlson2k) <k2k@narod.ru> Date: Sun, 9 Jan 2022 20:04:06 +0300 doc/examples/Makefile: fixed missing file Diffstat:
| M | doc/examples/Makefile.am | | | 9 | +++++++++ |
1 file changed, 9 insertions(+), 0 deletions(-)
diff --git a/doc/examples/Makefile.am b/doc/examples/Makefile.am @@ -36,6 +36,10 @@ if HAVE_W32 AM_CPPFLAGS += -DWINDOWS endif +if HAVE_EXPERIMENTAL +noinst_PROGRAMS += websocket +endif + basicauthentication_SOURCES = \ basicauthentication.c basicauthentication_LDADD = \ @@ -76,3 +80,8 @@ largepost_SOURCES = \ largepost_LDADD = \ $(top_builddir)/src/microhttpd/libmicrohttpd.la +websocket_SOURCES = \ + websocket.c +websocket_LDADD = \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd_ws/libmicrohttpd_ws.la