mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
15 lines
420 B
Makefile
15 lines
420 B
Makefile
plugin_LTLIBRARIES = libgstaom.la
|
|
|
|
libgstaom_la_SOURCES = \
|
|
gstaom.c \
|
|
gstav1enc.c \
|
|
gstav1dec.c
|
|
|
|
libgstaom_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(AOM_CFLAGS)
|
|
libgstaom_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS) -lgstvideo-$(GST_API_VERSION) $(AOM_LIBS)
|
|
libgstaom_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstaom.h \
|
|
gstav1dec.h \
|
|
gstav1enc.h
|