mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
d02e7d8029
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
22 lines
536 B
Makefile
22 lines
536 B
Makefile
plugin_LTLIBRARIES = libgstx264.la
|
|
|
|
libgstx264_la_SOURCES = gstx264enc.c
|
|
libgstx264_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(X264_CFLAGS)
|
|
libgstx264_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-$(GST_API_VERSION) \
|
|
-lgstpbutils-$(GST_API_VERSION) \
|
|
$(GST_LIBS) \
|
|
$(X264_LIBS) \
|
|
$(GMODULE_NO_EXPORT_LIBS)
|
|
libgstx264_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstx264enc.h
|
|
|
|
presetdir = $(datadir)/gstreamer-$(GST_API_VERSION)/presets
|
|
preset_DATA = GstX264Enc.prs
|
|
|
|
EXTRA_DIST = $(preset_DATA)
|