mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
18 lines
664 B
Makefile
18 lines
664 B
Makefile
|
|
plugin_LTLIBRARIES = libgstdfbvideosink.la
|
|
|
|
libgstdfbvideosink_la_SOURCES = dfbvideosink.c
|
|
libgstdfbvideosink_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(DIRECTFB_CFLAGS)
|
|
libgstdfbvideosink_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-$(GST_API_VERSION) \
|
|
-lgstinterfaces-$(GST_API_VERSION) \
|
|
$(DIRECTFB_LIBS) $(LIBOIL_LIBS)
|
|
libgstdfbvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstdfbvideosink_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = dfbvideosink.h
|
|
|
|
noinst_PROGRAMS = dfb-example
|
|
dfb_example_CFLAGS = $(GST_CFLAGS) $(DIRECTFB_CFLAGS)
|
|
dfb_example_LDADD = $(GST_LIBS) $(DIRECTFB_LIBS)
|