From e450bba6094c9d7b91b138d228ac94431c09e23a Mon Sep 17 00:00:00 2001 From: George Kiagiadakis Date: Mon, 4 Sep 2017 16:13:41 +0300 Subject: [PATCH] examples: Makefile.am: add ipcpipeline in SUBDIRS if enabled --- tests/examples/Makefile.am | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/examples/Makefile.am b/tests/examples/Makefile.am index 3649a500ba..6bf9a2e580 100644 --- a/tests/examples/Makefile.am +++ b/tests/examples/Makefile.am @@ -52,6 +52,12 @@ else WAYLAND_DIR= endif +if USE_IPCPIPELINE +IPCPIPELINE_DIR=ipcpipeline +else +IPCPIPELINE_DIR= +endif + noinst_PROGRAMS = playout playout_SOURCES = playout.c @@ -59,7 +65,8 @@ playout_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) playout_LDADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_API_VERSION) $(GST_LIBS) SUBDIRS= codecparsers mpegts $(DIRECTFB_DIR) $(GTK_EXAMPLES) $(OPENCV_EXAMPLES) \ - $(GL_DIR) $(GTK3_DIR) $(AVSAMPLE_DIR) $(WAYLAND_DIR) $(MATRIXMIX_DIR) + $(GL_DIR) $(GTK3_DIR) $(AVSAMPLE_DIR) $(WAYLAND_DIR) $(MATRIXMIX_DIR) \ + $(IPCPIPELINE_DIR) DIST_SUBDIRS= codecparsers mpegts camerabin2 directfb mxf opencv uvch264 gl gtk \ avsamplesink waylandsink audiomixmatrix ipcpipeline