mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
32 lines
919 B
Makefile
32 lines
919 B
Makefile
plugin_LTLIBRARIES = libgstxdgmime.la
|
|
|
|
xdgmime_sources = xdgmime/xdgmimealias.c \
|
|
xdgmime/xdgmime.c \
|
|
xdgmime/xdgmimecache.c \
|
|
xdgmime/xdgmimeglob.c \
|
|
xdgmime/xdgmimeicon.c \
|
|
xdgmime/xdgmimeint.c \
|
|
xdgmime/xdgmimemagic.c \
|
|
xdgmime/xdgmimeparent.c
|
|
|
|
if HAVE_GIO
|
|
libgstxdgmime_la_SOURCES = gstxdgmime.c
|
|
else
|
|
libgstxdgmime_la_SOURCES = gstxdgmime.c $(xdgmime_sources)
|
|
endif
|
|
|
|
libgstxdgmime_la_CFLAGS = $(GIO_CFLAGS) $(GST_CFLAGS) -DXDG_PREFIX=gst_xdg_mime
|
|
libgstxdgmime_la_LIBADD = $(GIO_LIBS) $(GST_LIBS) $(XDG_LIBS)
|
|
libgstxdgmime_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstxdgmime_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = xdgmime/xdgmimealias.h \
|
|
xdgmime/xdgmimecache.h \
|
|
xdgmime/xdgmimeglob.h \
|
|
xdgmime/xdgmime.h \
|
|
xdgmime/xdgmimeicon.h \
|
|
xdgmime/xdgmimeint.h \
|
|
xdgmime/xdgmimemagic.h \
|
|
xdgmime/xdgmimeparent.h
|
|
|
|
EXTRA_DIST = $(xdgmime_sources)
|