mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
58a92964c6
Mostly just add missing $(GST_BASE_CFLAGS), but also fix up order of flags (see docs/random/moving-plugins).
12 lines
439 B
Makefile
12 lines
439 B
Makefile
plugin_LTLIBRARIES = libgstvideotestsrc.la
|
|
|
|
libgstvideotestsrc_la_SOURCES = \
|
|
gstvideotestsrc.c \
|
|
videotestsrc.c
|
|
|
|
libgstvideotestsrc_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(LIBOIL_CFLAGS)
|
|
libgstvideotestsrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvideotestsrc_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(LIBOIL_LIBS)
|
|
libgstvideotestsrc_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstvideotestsrc.h videotestsrc.h
|