mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
f8f4620451
_BAD_CFLAGS should always come first, then GST_PLUGINS_BASE_CFLAGS, then GST_BASE_CFLAGS then GST_CFLAGS. Same for libs: first plugins base libs, then GST_BASE_LIB then GST_LIBS.
19 lines
537 B
Makefile
19 lines
537 B
Makefile
plugin_LTLIBRARIES = libgstsdl.la
|
|
|
|
libgstsdl_la_SOURCES = \
|
|
gstsdl.c \
|
|
sdlvideosink.c \
|
|
sdlaudiosink.c
|
|
|
|
libgstsdl_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(SDL_CFLAGS)
|
|
libgstsdl_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-$(GST_MAJORMINOR) \
|
|
-lgstaudio-$(GST_MAJORMINOR) \
|
|
-lgstinterfaces-$(GST_MAJORMINOR) \
|
|
$(SDL_LIBS)
|
|
libgstsdl_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstsdl_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = \
|
|
sdlvideosink.h \
|
|
sdlaudiosink.h
|