blob: 42928a510ad40d7871be876a5fc23a967c2f55ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
plugin_LTLIBRARIES = libgstautodetect.la
libgstautodetect_la_SOURCES = \
gstautoaudiosink.c \
gstautoaudiosrc.c \
gstautodetect.c \
gstautovideosink.c \
gstautovideosrc.c
libgstautodetect_la_CFLAGS = $(GST_CFLAGS)
libgstautodetect_la_LIBADD = $(GST_LIBS)
libgstautodetect_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = \
gstautoaudiosink.h \
gstautoaudiosrc.h \
gstautodetect.h \
gstautovideosink.h \
gstautovideosrc.h
|