mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
4261692187
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
11 lines
508 B
Makefile
11 lines
508 B
Makefile
plugin_LTLIBRARIES = libgstd3dvideosink.la
|
|
|
|
libgstd3dvideosink_la_SOURCES = d3dvideosink.c d3dhelpers.c
|
|
libgstd3dvideosink_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(DIRECT3D_CFLAGS) $(DIRECTX_CFLAGS) \
|
|
-DDISABLE_BUFFER_POOL
|
|
libgstd3dvideosink_la_LIBADD = $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-$(GST_API_VERSION) \
|
|
$(DIRECT3D_LIBS) $(DIRECTX_LDFAGS)
|
|
libgstd3dvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = d3dvideosink.h d3dhelpers.h
|