mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-28 03:00:35 +00:00
c3d4977761
Move include directives for gst-libs into GST_PLUGINS_BAD_CFLAGS, and fix all the Makefiles that use it. This is so that all the include directories are added in the proper order: first the directories in srcdir/builddir, then gst-plugins-base dirs, then gstreamer dirs. If the order is wrong, installed headers may be used instead of local headers and/or uninstalled headers from -base.
27 lines
893 B
Makefile
27 lines
893 B
Makefile
|
|
lib_LTLIBRARIES = libgstbasevideo-@GST_MAJORMINOR@.la
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
libgstbasevideo_@GST_MAJORMINOR@_la_SOURCES = \
|
|
gstbasevideoutils.c \
|
|
gstbasevideocodec.c \
|
|
gstbasevideodecoder.c \
|
|
gstbasevideoencoder.c \
|
|
gstbasevideoparse.c
|
|
|
|
libgstbasevideo_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/video
|
|
libgstbasevideo_@GST_MAJORMINOR@include_HEADERS = \
|
|
gstbasevideoutils.h \
|
|
gstbasevideocodec.h \
|
|
gstbasevideodecoder.h \
|
|
gstbasevideoencoder.h \
|
|
gstbasevideoparse.h
|
|
|
|
libgstbasevideo_@GST_MAJORMINOR@_la_CFLAGS = \
|
|
$(GST_PLUGINS_BAD_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) -DGST_USE_UNSTABLE_API \
|
|
$(GST_CFLAGS)
|
|
libgstbasevideo_@GST_MAJORMINOR@_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS) -lgstvideo-@GST_MAJORMINOR@
|
|
libgstbasevideo_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
|
|
|