mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +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.
16 lines
751 B
Makefile
16 lines
751 B
Makefile
lib_LTLIBRARIES = libgstsignalprocessor-@GST_MAJORMINOR@.la
|
|
|
|
libgstsignalprocessor_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/signalprocessor
|
|
libgstsignalprocessor_@GST_MAJORMINOR@include_HEADERS = gstsignalprocessor.h
|
|
|
|
libgstsignalprocessor_@GST_MAJORMINOR@_la_SOURCES = gstsignalprocessor.c
|
|
libgstsignalprocessor_@GST_MAJORMINOR@_la_CFLAGS = \
|
|
$(GST_PLUGINS_BAD_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CONTROLLER_CFLAGS) $(GST_CFLAGS)
|
|
libgstsignalprocessor_@GST_MAJORMINOR@_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_MAJORMINOR@ \
|
|
$(GST_CONTROLLER_LIBS) $(GST_LIBS)
|
|
libgstsignalprocessor_@GST_MAJORMINOR@_la_LDFLAGS = \
|
|
$(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
|
|
|