blob: c54502b688644a2577f7cdb51f9464ba98d938ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
plugin_LTLIBRARIES = libgstscaletempoplugin.la
# sources used to compile this plug-in
libgstscaletempoplugin_la_SOURCES = gstscaletempoplugin.c gstscaletempo.c
# flags used to compile this plugin
# add other _CFLAGS and _LIBS as needed
libgstscaletempoplugin_la_CFLAGS = $(GST_CFLAGS)
libgstscaletempoplugin_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
libgstscaletempoplugin_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstscaletempoplugin_la_LIBTOOLFLAGS = --tag=disable-static
# headers we need but don't want installed
noinst_HEADERS = gstscaletempo.h
|