You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
816 B
27 lines
816 B
basedir = vdpau
|
|
include $(top_srcdir)/modules/common.am
|
|
|
|
AM_CFLAGS += $(VDPAU_CFLAGS)
|
|
AM_LIBADD += libvlc_vdpau.la
|
|
|
|
libvlc_vdpau_la_SOURCES = vlc_vdpau.c vlc_vdpau.h instance.c
|
|
libvlc_vdpau_la_CPPFLAGS =
|
|
libvlc_vdpau_la_LIBADD = $(X_LIBS) $(X_PRE_LIBS) -lX11 \
|
|
$(LIBDL) $(LIBPTHREAD)
|
|
libvlc_vdpau_la_LDFLAGS = \
|
|
-no-undefined \
|
|
-export-symbols-regex ^vdp_ \
|
|
-version-info 0:0:0
|
|
pkglib_LTLIBRARIES = libvlc_vdpau.la
|
|
|
|
libvlc_LTLIBRARIES =
|
|
|
|
libvdpau_avcodec_plugin_la_SOURCES = avcodec.c
|
|
libvdpau_avcodec_plugin_la_CFLAGS = $(AM_CFLAGS) \
|
|
$(X_CFLAGS) $(CFLAGS_avcodec)
|
|
libvdpau_avcodec_plugin_la_LIBADD = $(AM_LIBADD) \
|
|
$(X_LIBS) $(X_PRE_LIBS) -lX11 $(LIBS_avcodec)
|
|
libvdpau_avcodec_plugin_la_LDFLAGS = $(AM_LDFLAGS) $(LDFLAGS_avcodec)
|
|
if HAVE_AVCODEC_VDPAU
|
|
libvlc_LTLIBRARIES += libvdpau_avcodec_plugin.la
|
|
endif
|
|
|