mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
18 lines
603 B
Makefile
18 lines
603 B
Makefile
plugin_LTLIBRARIES = libgstjpeg.la
|
|
|
|
libgstjpeg_la_SOURCES = \
|
|
gstjpeg.c \
|
|
gstjpegenc.c \
|
|
gstjpegdec.c
|
|
# deprected gstsmokeenc.c smokecodec.c gstsmokedec.c
|
|
|
|
libgstjpeg_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstjpeg_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS) -lgstvideo-$(GST_API_VERSION) \
|
|
$(JPEG_LIBS) $(LIBM)
|
|
libgstjpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstjpeg_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstjpeg.h \
|
|
gstjpegdec.h gstjpegenc.h
|
|
# deprecated gstsmokeenc.h gstsmokedec.h smokecodec.h smokeformat.h
|