mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-17 13:56:32 +00:00
d7f4c306cd
Original commit message from CVS: Fix the tests so that builds that are not --enable-plugin-builddir can register the plugins from the uninstalled gstreamer directory. There is some small amount of voodoo here. Also, add gst-inspect-check to gstreamer/testsuite, where it probably belongs
17 lines
634 B
Makefile
17 lines
634 B
Makefile
GST_PLUGIN_PATH=$(shell cd $(top_builddir) && pwd)
|
|
TESTS_ENVIRONMENT = GST_PLUGIN_PATH=$(GST_PLUGIN_PATH) GST_REGISTRY=$(GST_PLUGIN_PATH)/testsuite/test-registry.xml
|
|
|
|
testprogs = intersection compatibility normalisation
|
|
|
|
TESTS = $(testprogs)
|
|
|
|
check_PROGRAMS = $(testprogs)
|
|
|
|
# we have nothing but apps here, we can do this safely
|
|
intersection_LDADD = $(GST_LIBS)
|
|
intersection_CFLAGS = $(GST_CFLAGS) $(GNOME_CFLAGS) $(XML_CFLAGS)
|
|
compatibility_LDADD = $(GST_LIBS)
|
|
compatibility_CFLAGS = $(GST_CFLAGS) $(GNOME_CFLAGS) $(XML_CFLAGS)
|
|
normalisation_LDADD = $(GST_LIBS)
|
|
normalisation_CFLAGS = $(GST_CFLAGS) $(GNOME_CFLAGS) $(XML_CFLAGS)
|
|
|