mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
4261692187
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
15 lines
533 B
Makefile
15 lines
533 B
Makefile
plugin_LTLIBRARIES = libgstopenh264.la
|
|
|
|
libgstopenh264_la_SOURCES = \
|
|
gstopenh264plugin.c \
|
|
gstopenh264enc.cpp \
|
|
gstopenh264dec.cpp
|
|
|
|
libgstopenh264_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(OPENH264_CFLAGS)
|
|
libgstopenh264_la_CXXFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CXXFLAGS) $(OPENH264_CFLAGS)
|
|
libgstopenh264_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-1.0 $(GST_LIBS) $(OPENH264_LIBS)
|
|
libgstopenh264_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstopenh264dec.h \
|
|
gstopenh264enc.h
|